2016-02-07 17:27:24 +01:00
// THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.
// Package kms provides a client for AWS Key Management Service.
package kms
import (
2017-02-20 18:20:36 +01:00
"fmt"
2016-02-07 17:27:24 +01:00
"time"
"github.com/aws/aws-sdk-go/aws/awsutil"
"github.com/aws/aws-sdk-go/aws/request"
2016-03-11 01:27:37 +01:00
"github.com/aws/aws-sdk-go/private/protocol"
"github.com/aws/aws-sdk-go/private/protocol/jsonrpc"
2016-02-07 17:27:24 +01:00
)
const opCancelKeyDeletion = "CancelKeyDeletion"
2016-07-15 15:49:02 +02:00
// CancelKeyDeletionRequest generates a "aws/request.Request" representing the
// client's request for the CancelKeyDeletion operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See CancelKeyDeletion for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the CancelKeyDeletion method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the CancelKeyDeletionRequest method.
// req, resp := client.CancelKeyDeletionRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/CancelKeyDeletion
2016-02-07 17:27:24 +01:00
func ( c * KMS ) CancelKeyDeletionRequest ( input * CancelKeyDeletionInput ) ( req * request . Request , output * CancelKeyDeletionOutput ) {
op := & request . Operation {
Name : opCancelKeyDeletion ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & CancelKeyDeletionInput { }
}
output = & CancelKeyDeletionOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-02-07 17:27:24 +01:00
return
}
2016-10-17 23:21:08 +02:00
// CancelKeyDeletion API operation for AWS Key Management Service.
//
2016-02-07 17:27:24 +01:00
// Cancels the deletion of a customer master key (CMK). When this operation
// is successful, the CMK is set to the Disabled state. To enable a CMK, use
// EnableKey.
//
2016-07-15 15:49:02 +02:00
// For more information about scheduling and canceling deletion of a CMK, see
// Deleting Customer Master Keys (http://docs.aws.amazon.com/kms/latest/developerguide/deleting-keys.html)
2016-02-07 17:27:24 +01:00
// in the AWS Key Management Service Developer Guide.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Key Management Service's
// API operation CancelKeyDeletion for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeNotFoundException "NotFoundException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified entity or resource could not
// be found.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidArnException "InvalidArnException"
2016-10-17 23:21:08 +02:00
// The request was rejected because a specified ARN was not valid.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeDependencyTimeoutException "DependencyTimeoutException"
2016-10-17 23:21:08 +02:00
// The system timed out while trying to fulfill the request. The request can
// be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInternalException "InternalException"
2016-10-17 23:21:08 +02:00
// The request was rejected because an internal exception occurred. The request
// can be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidStateException "InvalidStateException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the state of the specified resource is not
// valid for this request.
//
// For more information about how key state affects the use of a CMK, see How
// Key State Affects Use of a Customer Master Key (http://docs.aws.amazon.com/kms/latest/developerguide/key-state.html)
// in the AWS Key Management Service Developer Guide.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/CancelKeyDeletion
2016-02-07 17:27:24 +01:00
func ( c * KMS ) CancelKeyDeletion ( input * CancelKeyDeletionInput ) ( * CancelKeyDeletionOutput , error ) {
req , out := c . CancelKeyDeletionRequest ( input )
err := req . Send ( )
return out , err
}
const opCreateAlias = "CreateAlias"
2016-07-15 15:49:02 +02:00
// CreateAliasRequest generates a "aws/request.Request" representing the
// client's request for the CreateAlias operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See CreateAlias for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the CreateAlias method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the CreateAliasRequest method.
// req, resp := client.CreateAliasRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/CreateAlias
2016-02-07 17:27:24 +01:00
func ( c * KMS ) CreateAliasRequest ( input * CreateAliasInput ) ( req * request . Request , output * CreateAliasOutput ) {
op := & request . Operation {
Name : opCreateAlias ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & CreateAliasInput { }
}
2017-01-23 22:22:31 +01:00
output = & CreateAliasOutput { }
2016-02-07 17:27:24 +01:00
req = c . newRequest ( op , input , output )
2016-03-11 01:27:37 +01:00
req . Handlers . Unmarshal . Remove ( jsonrpc . UnmarshalHandler )
req . Handlers . Unmarshal . PushBackNamed ( protocol . UnmarshalDiscardBodyHandler )
2016-02-07 17:27:24 +01:00
return
}
2016-10-17 23:21:08 +02:00
// CreateAlias API operation for AWS Key Management Service.
//
2016-02-07 17:27:24 +01:00
// Creates a display name for a customer master key. An alias can be used to
// identify a key and should be unique. The console enforces a one-to-one mapping
// between the alias and a key. An alias name can contain only alphanumeric
// characters, forward slashes (/), underscores (_), and dashes (-). An alias
// must start with the word "alias" followed by a forward slash (alias/). An
// alias that begins with "aws" after the forward slash (alias/aws...) is reserved
// by Amazon Web Services (AWS).
//
// The alias and the key it is mapped to must be in the same AWS account and
// the same region.
//
// To map an alias to a different key, call UpdateAlias.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Key Management Service's
// API operation CreateAlias for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeDependencyTimeoutException "DependencyTimeoutException"
2016-10-17 23:21:08 +02:00
// The system timed out while trying to fulfill the request. The request can
// be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeAlreadyExistsException "AlreadyExistsException"
2016-10-17 23:21:08 +02:00
// The request was rejected because it attempted to create a resource that already
// exists.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeNotFoundException "NotFoundException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified entity or resource could not
// be found.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidAliasNameException "InvalidAliasNameException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified alias name is not valid.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInternalException "InternalException"
2016-10-17 23:21:08 +02:00
// The request was rejected because an internal exception occurred. The request
// can be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeLimitExceededException "LimitExceededException"
2016-10-17 23:21:08 +02:00
// The request was rejected because a limit was exceeded. For more information,
// see Limits (http://docs.aws.amazon.com/kms/latest/developerguide/limits.html)
// in the AWS Key Management Service Developer Guide.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidStateException "InvalidStateException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the state of the specified resource is not
// valid for this request.
//
// For more information about how key state affects the use of a CMK, see How
// Key State Affects Use of a Customer Master Key (http://docs.aws.amazon.com/kms/latest/developerguide/key-state.html)
// in the AWS Key Management Service Developer Guide.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/CreateAlias
2016-02-07 17:27:24 +01:00
func ( c * KMS ) CreateAlias ( input * CreateAliasInput ) ( * CreateAliasOutput , error ) {
req , out := c . CreateAliasRequest ( input )
err := req . Send ( )
return out , err
}
const opCreateGrant = "CreateGrant"
2016-07-15 15:49:02 +02:00
// CreateGrantRequest generates a "aws/request.Request" representing the
// client's request for the CreateGrant operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See CreateGrant for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the CreateGrant method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the CreateGrantRequest method.
// req, resp := client.CreateGrantRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/CreateGrant
2016-02-07 17:27:24 +01:00
func ( c * KMS ) CreateGrantRequest ( input * CreateGrantInput ) ( req * request . Request , output * CreateGrantOutput ) {
op := & request . Operation {
Name : opCreateGrant ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & CreateGrantInput { }
}
output = & CreateGrantOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-02-07 17:27:24 +01:00
return
}
2016-10-17 23:21:08 +02:00
// CreateGrant API operation for AWS Key Management Service.
//
2016-02-07 17:27:24 +01:00
// Adds a grant to a key to specify who can use the key and under what conditions.
// Grants are alternate permission mechanisms to key policies.
//
// For more information about grants, see Grants (http://docs.aws.amazon.com/kms/latest/developerguide/grants.html)
// in the AWS Key Management Service Developer Guide.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Key Management Service's
// API operation CreateGrant for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeNotFoundException "NotFoundException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified entity or resource could not
// be found.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeDisabledException "DisabledException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified CMK is not enabled.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeDependencyTimeoutException "DependencyTimeoutException"
2016-10-17 23:21:08 +02:00
// The system timed out while trying to fulfill the request. The request can
// be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidArnException "InvalidArnException"
2016-10-17 23:21:08 +02:00
// The request was rejected because a specified ARN was not valid.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInternalException "InternalException"
2016-10-17 23:21:08 +02:00
// The request was rejected because an internal exception occurred. The request
// can be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidGrantTokenException "InvalidGrantTokenException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified grant token is not valid.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeLimitExceededException "LimitExceededException"
2016-10-17 23:21:08 +02:00
// The request was rejected because a limit was exceeded. For more information,
// see Limits (http://docs.aws.amazon.com/kms/latest/developerguide/limits.html)
// in the AWS Key Management Service Developer Guide.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidStateException "InvalidStateException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the state of the specified resource is not
// valid for this request.
//
// For more information about how key state affects the use of a CMK, see How
// Key State Affects Use of a Customer Master Key (http://docs.aws.amazon.com/kms/latest/developerguide/key-state.html)
// in the AWS Key Management Service Developer Guide.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/CreateGrant
2016-02-07 17:27:24 +01:00
func ( c * KMS ) CreateGrant ( input * CreateGrantInput ) ( * CreateGrantOutput , error ) {
req , out := c . CreateGrantRequest ( input )
err := req . Send ( )
return out , err
}
const opCreateKey = "CreateKey"
2016-07-15 15:49:02 +02:00
// CreateKeyRequest generates a "aws/request.Request" representing the
// client's request for the CreateKey operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See CreateKey for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the CreateKey method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the CreateKeyRequest method.
// req, resp := client.CreateKeyRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/CreateKey
2016-02-07 17:27:24 +01:00
func ( c * KMS ) CreateKeyRequest ( input * CreateKeyInput ) ( req * request . Request , output * CreateKeyOutput ) {
op := & request . Operation {
Name : opCreateKey ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & CreateKeyInput { }
}
output = & CreateKeyOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-02-07 17:27:24 +01:00
return
}
2016-10-17 23:21:08 +02:00
// CreateKey API operation for AWS Key Management Service.
//
2016-07-15 15:49:02 +02:00
// Creates a customer master key (CMK).
//
// You can use a CMK to encrypt small amounts of data (4 KiB or less) directly,
// but CMKs are more commonly used to encrypt data encryption keys (DEKs), which
// are used to encrypt raw data. For more information about DEKs and the difference
// between CMKs and DEKs, see the following:
//
2016-11-19 19:41:01 +01:00
// * The GenerateDataKey operation
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * AWS Key Management Service Concepts (http://docs.aws.amazon.com/kms/latest/developerguide/concepts.html)
// in the AWS Key Management Service Developer Guide
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Key Management Service's
// API operation CreateKey for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeMalformedPolicyDocumentException "MalformedPolicyDocumentException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified policy is not syntactically
// or semantically correct.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeDependencyTimeoutException "DependencyTimeoutException"
2016-10-17 23:21:08 +02:00
// The system timed out while trying to fulfill the request. The request can
// be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidArnException "InvalidArnException"
2016-10-17 23:21:08 +02:00
// The request was rejected because a specified ARN was not valid.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeUnsupportedOperationException "UnsupportedOperationException"
2016-10-17 23:21:08 +02:00
// The request was rejected because a specified parameter is not supported or
// a specified resource is not valid for this operation.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInternalException "InternalException"
2016-10-17 23:21:08 +02:00
// The request was rejected because an internal exception occurred. The request
// can be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeLimitExceededException "LimitExceededException"
2016-10-17 23:21:08 +02:00
// The request was rejected because a limit was exceeded. For more information,
// see Limits (http://docs.aws.amazon.com/kms/latest/developerguide/limits.html)
// in the AWS Key Management Service Developer Guide.
//
2017-02-20 18:20:36 +01:00
// * ErrCodeTagException "TagException"
// The request was rejected because one or more tags are not valid.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/CreateKey
2016-02-07 17:27:24 +01:00
func ( c * KMS ) CreateKey ( input * CreateKeyInput ) ( * CreateKeyOutput , error ) {
req , out := c . CreateKeyRequest ( input )
err := req . Send ( )
return out , err
}
const opDecrypt = "Decrypt"
2016-07-15 15:49:02 +02:00
// DecryptRequest generates a "aws/request.Request" representing the
// client's request for the Decrypt operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See Decrypt for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the Decrypt method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the DecryptRequest method.
// req, resp := client.DecryptRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/Decrypt
2016-02-07 17:27:24 +01:00
func ( c * KMS ) DecryptRequest ( input * DecryptInput ) ( req * request . Request , output * DecryptOutput ) {
op := & request . Operation {
Name : opDecrypt ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & DecryptInput { }
}
output = & DecryptOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-02-07 17:27:24 +01:00
return
}
2016-10-17 23:21:08 +02:00
// Decrypt API operation for AWS Key Management Service.
//
2016-02-07 17:27:24 +01:00
// Decrypts ciphertext. Ciphertext is plaintext that has been previously encrypted
2016-07-15 15:49:02 +02:00
// by using any of the following functions:
//
2016-11-19 19:41:01 +01:00
// * GenerateDataKey
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * GenerateDataKeyWithoutPlaintext
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * Encrypt
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// Note that if a caller has been granted access permissions to all keys (through,
// for example, IAM user policies that grant Decrypt permission on all resources),
// then ciphertext encrypted by using keys in other accounts where the key grants
// access to the caller can be decrypted. To remedy this, we recommend that
// you do not grant Decrypt access in an IAM user policy. Instead grant Decrypt
// access only in key policies. If you must grant Decrypt access in an IAM user
// policy, you should scope the resource to specific keys or to specific trusted
// accounts.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Key Management Service's
// API operation Decrypt for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeNotFoundException "NotFoundException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified entity or resource could not
// be found.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeDisabledException "DisabledException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified CMK is not enabled.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidCiphertextException "InvalidCiphertextException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified ciphertext has been corrupted
// or is otherwise invalid.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeKeyUnavailableException "KeyUnavailableException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified CMK was not available. The
// request can be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeDependencyTimeoutException "DependencyTimeoutException"
2016-10-17 23:21:08 +02:00
// The system timed out while trying to fulfill the request. The request can
// be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidGrantTokenException "InvalidGrantTokenException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified grant token is not valid.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInternalException "InternalException"
2016-10-17 23:21:08 +02:00
// The request was rejected because an internal exception occurred. The request
// can be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidStateException "InvalidStateException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the state of the specified resource is not
// valid for this request.
//
// For more information about how key state affects the use of a CMK, see How
// Key State Affects Use of a Customer Master Key (http://docs.aws.amazon.com/kms/latest/developerguide/key-state.html)
// in the AWS Key Management Service Developer Guide.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/Decrypt
2016-02-07 17:27:24 +01:00
func ( c * KMS ) Decrypt ( input * DecryptInput ) ( * DecryptOutput , error ) {
req , out := c . DecryptRequest ( input )
err := req . Send ( )
return out , err
}
const opDeleteAlias = "DeleteAlias"
2016-07-15 15:49:02 +02:00
// DeleteAliasRequest generates a "aws/request.Request" representing the
// client's request for the DeleteAlias operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See DeleteAlias for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the DeleteAlias method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the DeleteAliasRequest method.
// req, resp := client.DeleteAliasRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/DeleteAlias
2016-02-07 17:27:24 +01:00
func ( c * KMS ) DeleteAliasRequest ( input * DeleteAliasInput ) ( req * request . Request , output * DeleteAliasOutput ) {
op := & request . Operation {
Name : opDeleteAlias ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & DeleteAliasInput { }
}
2017-01-23 22:22:31 +01:00
output = & DeleteAliasOutput { }
2016-02-07 17:27:24 +01:00
req = c . newRequest ( op , input , output )
2016-03-11 01:27:37 +01:00
req . Handlers . Unmarshal . Remove ( jsonrpc . UnmarshalHandler )
req . Handlers . Unmarshal . PushBackNamed ( protocol . UnmarshalDiscardBodyHandler )
2016-02-07 17:27:24 +01:00
return
}
2016-10-17 23:21:08 +02:00
// DeleteAlias API operation for AWS Key Management Service.
//
2016-02-07 17:27:24 +01:00
// Deletes the specified alias. To map an alias to a different key, call UpdateAlias.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Key Management Service's
// API operation DeleteAlias for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeDependencyTimeoutException "DependencyTimeoutException"
2016-10-17 23:21:08 +02:00
// The system timed out while trying to fulfill the request. The request can
// be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeNotFoundException "NotFoundException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified entity or resource could not
// be found.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInternalException "InternalException"
2016-10-17 23:21:08 +02:00
// The request was rejected because an internal exception occurred. The request
// can be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidStateException "InvalidStateException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the state of the specified resource is not
// valid for this request.
//
// For more information about how key state affects the use of a CMK, see How
// Key State Affects Use of a Customer Master Key (http://docs.aws.amazon.com/kms/latest/developerguide/key-state.html)
// in the AWS Key Management Service Developer Guide.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/DeleteAlias
2016-02-07 17:27:24 +01:00
func ( c * KMS ) DeleteAlias ( input * DeleteAliasInput ) ( * DeleteAliasOutput , error ) {
req , out := c . DeleteAliasRequest ( input )
err := req . Send ( )
return out , err
}
2016-08-11 19:01:51 +02:00
const opDeleteImportedKeyMaterial = "DeleteImportedKeyMaterial"
// DeleteImportedKeyMaterialRequest generates a "aws/request.Request" representing the
// client's request for the DeleteImportedKeyMaterial operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See DeleteImportedKeyMaterial for usage and error information.
//
2016-08-11 19:01:51 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the DeleteImportedKeyMaterial method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the DeleteImportedKeyMaterialRequest method.
// req, resp := client.DeleteImportedKeyMaterialRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/DeleteImportedKeyMaterial
2016-08-11 19:01:51 +02:00
func ( c * KMS ) DeleteImportedKeyMaterialRequest ( input * DeleteImportedKeyMaterialInput ) ( req * request . Request , output * DeleteImportedKeyMaterialOutput ) {
op := & request . Operation {
Name : opDeleteImportedKeyMaterial ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & DeleteImportedKeyMaterialInput { }
}
2017-01-23 22:22:31 +01:00
output = & DeleteImportedKeyMaterialOutput { }
2016-08-11 19:01:51 +02:00
req = c . newRequest ( op , input , output )
req . Handlers . Unmarshal . Remove ( jsonrpc . UnmarshalHandler )
req . Handlers . Unmarshal . PushBackNamed ( protocol . UnmarshalDiscardBodyHandler )
return
}
2016-10-17 23:21:08 +02:00
// DeleteImportedKeyMaterial API operation for AWS Key Management Service.
//
2016-08-11 19:01:51 +02:00
// Deletes key material that you previously imported and makes the specified
// customer master key (CMK) unusable. For more information about importing
// key material into AWS KMS, see Importing Key Material (http://docs.aws.amazon.com/kms/latest/developerguide/importing-keys.html)
// in the AWS Key Management Service Developer Guide.
//
// When the specified CMK is in the PendingDeletion state, this operation does
// not change the CMK's state. Otherwise, it changes the CMK's state to PendingImport.
//
// After you delete key material, you can use ImportKeyMaterial to reimport
// the same key material into the CMK.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Key Management Service's
// API operation DeleteImportedKeyMaterial for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidArnException "InvalidArnException"
2016-10-17 23:21:08 +02:00
// The request was rejected because a specified ARN was not valid.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeUnsupportedOperationException "UnsupportedOperationException"
2016-10-17 23:21:08 +02:00
// The request was rejected because a specified parameter is not supported or
// a specified resource is not valid for this operation.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeDependencyTimeoutException "DependencyTimeoutException"
2016-10-17 23:21:08 +02:00
// The system timed out while trying to fulfill the request. The request can
// be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeNotFoundException "NotFoundException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified entity or resource could not
// be found.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInternalException "InternalException"
2016-10-17 23:21:08 +02:00
// The request was rejected because an internal exception occurred. The request
// can be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidStateException "InvalidStateException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the state of the specified resource is not
// valid for this request.
//
// For more information about how key state affects the use of a CMK, see How
// Key State Affects Use of a Customer Master Key (http://docs.aws.amazon.com/kms/latest/developerguide/key-state.html)
// in the AWS Key Management Service Developer Guide.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/DeleteImportedKeyMaterial
2016-08-11 19:01:51 +02:00
func ( c * KMS ) DeleteImportedKeyMaterial ( input * DeleteImportedKeyMaterialInput ) ( * DeleteImportedKeyMaterialOutput , error ) {
req , out := c . DeleteImportedKeyMaterialRequest ( input )
err := req . Send ( )
return out , err
}
2016-02-07 17:27:24 +01:00
const opDescribeKey = "DescribeKey"
2016-07-15 15:49:02 +02:00
// DescribeKeyRequest generates a "aws/request.Request" representing the
// client's request for the DescribeKey operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See DescribeKey for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the DescribeKey method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the DescribeKeyRequest method.
// req, resp := client.DescribeKeyRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/DescribeKey
2016-02-07 17:27:24 +01:00
func ( c * KMS ) DescribeKeyRequest ( input * DescribeKeyInput ) ( req * request . Request , output * DescribeKeyOutput ) {
op := & request . Operation {
Name : opDescribeKey ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & DescribeKeyInput { }
}
output = & DescribeKeyOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-02-07 17:27:24 +01:00
return
}
2016-10-17 23:21:08 +02:00
// DescribeKey API operation for AWS Key Management Service.
//
2016-02-07 17:27:24 +01:00
// Provides detailed information about the specified customer master key.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Key Management Service's
// API operation DescribeKey for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeNotFoundException "NotFoundException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified entity or resource could not
// be found.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidArnException "InvalidArnException"
2016-10-17 23:21:08 +02:00
// The request was rejected because a specified ARN was not valid.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeDependencyTimeoutException "DependencyTimeoutException"
2016-10-17 23:21:08 +02:00
// The system timed out while trying to fulfill the request. The request can
// be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInternalException "InternalException"
2016-10-17 23:21:08 +02:00
// The request was rejected because an internal exception occurred. The request
// can be retried.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/DescribeKey
2016-02-07 17:27:24 +01:00
func ( c * KMS ) DescribeKey ( input * DescribeKeyInput ) ( * DescribeKeyOutput , error ) {
req , out := c . DescribeKeyRequest ( input )
err := req . Send ( )
return out , err
}
const opDisableKey = "DisableKey"
2016-07-15 15:49:02 +02:00
// DisableKeyRequest generates a "aws/request.Request" representing the
// client's request for the DisableKey operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See DisableKey for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the DisableKey method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the DisableKeyRequest method.
// req, resp := client.DisableKeyRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/DisableKey
2016-02-07 17:27:24 +01:00
func ( c * KMS ) DisableKeyRequest ( input * DisableKeyInput ) ( req * request . Request , output * DisableKeyOutput ) {
op := & request . Operation {
Name : opDisableKey ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & DisableKeyInput { }
}
2017-01-23 22:22:31 +01:00
output = & DisableKeyOutput { }
2016-02-07 17:27:24 +01:00
req = c . newRequest ( op , input , output )
2016-03-11 01:27:37 +01:00
req . Handlers . Unmarshal . Remove ( jsonrpc . UnmarshalHandler )
req . Handlers . Unmarshal . PushBackNamed ( protocol . UnmarshalDiscardBodyHandler )
2016-02-07 17:27:24 +01:00
return
}
2016-10-17 23:21:08 +02:00
// DisableKey API operation for AWS Key Management Service.
//
2016-07-15 15:49:02 +02:00
// Sets the state of a customer master key (CMK) to disabled, thereby preventing
// its use for cryptographic operations. For more information about how key
// state affects the use of a CMK, see How Key State Affects the Use of a Customer
2016-02-07 17:27:24 +01:00
// Master Key (http://docs.aws.amazon.com/kms/latest/developerguide/key-state.html)
// in the AWS Key Management Service Developer Guide.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Key Management Service's
// API operation DisableKey for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeNotFoundException "NotFoundException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified entity or resource could not
// be found.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidArnException "InvalidArnException"
2016-10-17 23:21:08 +02:00
// The request was rejected because a specified ARN was not valid.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeDependencyTimeoutException "DependencyTimeoutException"
2016-10-17 23:21:08 +02:00
// The system timed out while trying to fulfill the request. The request can
// be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInternalException "InternalException"
2016-10-17 23:21:08 +02:00
// The request was rejected because an internal exception occurred. The request
// can be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidStateException "InvalidStateException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the state of the specified resource is not
// valid for this request.
//
// For more information about how key state affects the use of a CMK, see How
// Key State Affects Use of a Customer Master Key (http://docs.aws.amazon.com/kms/latest/developerguide/key-state.html)
// in the AWS Key Management Service Developer Guide.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/DisableKey
2016-02-07 17:27:24 +01:00
func ( c * KMS ) DisableKey ( input * DisableKeyInput ) ( * DisableKeyOutput , error ) {
req , out := c . DisableKeyRequest ( input )
err := req . Send ( )
return out , err
}
const opDisableKeyRotation = "DisableKeyRotation"
2016-07-15 15:49:02 +02:00
// DisableKeyRotationRequest generates a "aws/request.Request" representing the
// client's request for the DisableKeyRotation operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See DisableKeyRotation for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the DisableKeyRotation method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the DisableKeyRotationRequest method.
// req, resp := client.DisableKeyRotationRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/DisableKeyRotation
2016-02-07 17:27:24 +01:00
func ( c * KMS ) DisableKeyRotationRequest ( input * DisableKeyRotationInput ) ( req * request . Request , output * DisableKeyRotationOutput ) {
op := & request . Operation {
Name : opDisableKeyRotation ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & DisableKeyRotationInput { }
}
2017-01-23 22:22:31 +01:00
output = & DisableKeyRotationOutput { }
2016-02-07 17:27:24 +01:00
req = c . newRequest ( op , input , output )
2016-03-11 01:27:37 +01:00
req . Handlers . Unmarshal . Remove ( jsonrpc . UnmarshalHandler )
req . Handlers . Unmarshal . PushBackNamed ( protocol . UnmarshalDiscardBodyHandler )
2016-02-07 17:27:24 +01:00
return
}
2016-10-17 23:21:08 +02:00
// DisableKeyRotation API operation for AWS Key Management Service.
//
2016-02-07 17:27:24 +01:00
// Disables rotation of the specified key.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Key Management Service's
// API operation DisableKeyRotation for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeNotFoundException "NotFoundException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified entity or resource could not
// be found.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeDisabledException "DisabledException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified CMK is not enabled.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidArnException "InvalidArnException"
2016-10-17 23:21:08 +02:00
// The request was rejected because a specified ARN was not valid.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeDependencyTimeoutException "DependencyTimeoutException"
2016-10-17 23:21:08 +02:00
// The system timed out while trying to fulfill the request. The request can
// be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInternalException "InternalException"
2016-10-17 23:21:08 +02:00
// The request was rejected because an internal exception occurred. The request
// can be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidStateException "InvalidStateException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the state of the specified resource is not
// valid for this request.
//
// For more information about how key state affects the use of a CMK, see How
// Key State Affects Use of a Customer Master Key (http://docs.aws.amazon.com/kms/latest/developerguide/key-state.html)
// in the AWS Key Management Service Developer Guide.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeUnsupportedOperationException "UnsupportedOperationException"
2016-10-17 23:21:08 +02:00
// The request was rejected because a specified parameter is not supported or
// a specified resource is not valid for this operation.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/DisableKeyRotation
2016-02-07 17:27:24 +01:00
func ( c * KMS ) DisableKeyRotation ( input * DisableKeyRotationInput ) ( * DisableKeyRotationOutput , error ) {
req , out := c . DisableKeyRotationRequest ( input )
err := req . Send ( )
return out , err
}
const opEnableKey = "EnableKey"
2016-07-15 15:49:02 +02:00
// EnableKeyRequest generates a "aws/request.Request" representing the
// client's request for the EnableKey operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See EnableKey for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the EnableKey method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the EnableKeyRequest method.
// req, resp := client.EnableKeyRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/EnableKey
2016-02-07 17:27:24 +01:00
func ( c * KMS ) EnableKeyRequest ( input * EnableKeyInput ) ( req * request . Request , output * EnableKeyOutput ) {
op := & request . Operation {
Name : opEnableKey ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & EnableKeyInput { }
}
2017-01-23 22:22:31 +01:00
output = & EnableKeyOutput { }
2016-02-07 17:27:24 +01:00
req = c . newRequest ( op , input , output )
2016-03-11 01:27:37 +01:00
req . Handlers . Unmarshal . Remove ( jsonrpc . UnmarshalHandler )
req . Handlers . Unmarshal . PushBackNamed ( protocol . UnmarshalDiscardBodyHandler )
2016-02-07 17:27:24 +01:00
return
}
2016-10-17 23:21:08 +02:00
// EnableKey API operation for AWS Key Management Service.
//
2016-02-07 17:27:24 +01:00
// Marks a key as enabled, thereby permitting its use.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Key Management Service's
// API operation EnableKey for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeNotFoundException "NotFoundException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified entity or resource could not
// be found.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidArnException "InvalidArnException"
2016-10-17 23:21:08 +02:00
// The request was rejected because a specified ARN was not valid.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeDependencyTimeoutException "DependencyTimeoutException"
2016-10-17 23:21:08 +02:00
// The system timed out while trying to fulfill the request. The request can
// be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInternalException "InternalException"
2016-10-17 23:21:08 +02:00
// The request was rejected because an internal exception occurred. The request
// can be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeLimitExceededException "LimitExceededException"
2016-10-17 23:21:08 +02:00
// The request was rejected because a limit was exceeded. For more information,
// see Limits (http://docs.aws.amazon.com/kms/latest/developerguide/limits.html)
// in the AWS Key Management Service Developer Guide.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidStateException "InvalidStateException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the state of the specified resource is not
// valid for this request.
//
// For more information about how key state affects the use of a CMK, see How
// Key State Affects Use of a Customer Master Key (http://docs.aws.amazon.com/kms/latest/developerguide/key-state.html)
// in the AWS Key Management Service Developer Guide.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/EnableKey
2016-02-07 17:27:24 +01:00
func ( c * KMS ) EnableKey ( input * EnableKeyInput ) ( * EnableKeyOutput , error ) {
req , out := c . EnableKeyRequest ( input )
err := req . Send ( )
return out , err
}
const opEnableKeyRotation = "EnableKeyRotation"
2016-07-15 15:49:02 +02:00
// EnableKeyRotationRequest generates a "aws/request.Request" representing the
// client's request for the EnableKeyRotation operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See EnableKeyRotation for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the EnableKeyRotation method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the EnableKeyRotationRequest method.
// req, resp := client.EnableKeyRotationRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/EnableKeyRotation
2016-02-07 17:27:24 +01:00
func ( c * KMS ) EnableKeyRotationRequest ( input * EnableKeyRotationInput ) ( req * request . Request , output * EnableKeyRotationOutput ) {
op := & request . Operation {
Name : opEnableKeyRotation ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & EnableKeyRotationInput { }
}
2017-01-23 22:22:31 +01:00
output = & EnableKeyRotationOutput { }
2016-02-07 17:27:24 +01:00
req = c . newRequest ( op , input , output )
2016-03-11 01:27:37 +01:00
req . Handlers . Unmarshal . Remove ( jsonrpc . UnmarshalHandler )
req . Handlers . Unmarshal . PushBackNamed ( protocol . UnmarshalDiscardBodyHandler )
2016-02-07 17:27:24 +01:00
return
}
2016-10-17 23:21:08 +02:00
// EnableKeyRotation API operation for AWS Key Management Service.
//
2016-02-07 17:27:24 +01:00
// Enables rotation of the specified customer master key.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Key Management Service's
// API operation EnableKeyRotation for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeNotFoundException "NotFoundException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified entity or resource could not
// be found.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeDisabledException "DisabledException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified CMK is not enabled.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidArnException "InvalidArnException"
2016-10-17 23:21:08 +02:00
// The request was rejected because a specified ARN was not valid.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeDependencyTimeoutException "DependencyTimeoutException"
2016-10-17 23:21:08 +02:00
// The system timed out while trying to fulfill the request. The request can
// be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInternalException "InternalException"
2016-10-17 23:21:08 +02:00
// The request was rejected because an internal exception occurred. The request
// can be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidStateException "InvalidStateException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the state of the specified resource is not
// valid for this request.
//
// For more information about how key state affects the use of a CMK, see How
// Key State Affects Use of a Customer Master Key (http://docs.aws.amazon.com/kms/latest/developerguide/key-state.html)
// in the AWS Key Management Service Developer Guide.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeUnsupportedOperationException "UnsupportedOperationException"
2016-10-17 23:21:08 +02:00
// The request was rejected because a specified parameter is not supported or
// a specified resource is not valid for this operation.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/EnableKeyRotation
2016-02-07 17:27:24 +01:00
func ( c * KMS ) EnableKeyRotation ( input * EnableKeyRotationInput ) ( * EnableKeyRotationOutput , error ) {
req , out := c . EnableKeyRotationRequest ( input )
err := req . Send ( )
return out , err
}
const opEncrypt = "Encrypt"
2016-07-15 15:49:02 +02:00
// EncryptRequest generates a "aws/request.Request" representing the
// client's request for the Encrypt operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See Encrypt for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the Encrypt method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the EncryptRequest method.
// req, resp := client.EncryptRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/Encrypt
2016-02-07 17:27:24 +01:00
func ( c * KMS ) EncryptRequest ( input * EncryptInput ) ( req * request . Request , output * EncryptOutput ) {
op := & request . Operation {
Name : opEncrypt ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & EncryptInput { }
}
output = & EncryptOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-02-07 17:27:24 +01:00
return
}
2016-10-17 23:21:08 +02:00
// Encrypt API operation for AWS Key Management Service.
//
2016-02-07 17:27:24 +01:00
// Encrypts plaintext into ciphertext by using a customer master key. The Encrypt
2016-07-15 15:49:02 +02:00
// function has two primary use cases:
//
2016-11-19 19:41:01 +01:00
// * You can encrypt up to 4 KB of arbitrary data such as an RSA key, a database
// password, or other sensitive customer information.
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * If you are moving encrypted data from one region to another, you can
// use this API to encrypt in the new region the plaintext data key that
// was used to encrypt the data in the original region. This provides you
// with an encrypted copy of the data key that can be decrypted in the new
// region and used there to decrypt the encrypted data.
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// Unless you are moving encrypted data from one region to another, you don't
2016-02-07 17:27:24 +01:00
// use this function to encrypt a generated data key within a region. You retrieve
// data keys already encrypted by calling the GenerateDataKey or GenerateDataKeyWithoutPlaintext
// function. Data keys don't need to be encrypted again by calling Encrypt.
//
// If you want to encrypt data locally in your application, you can use the
// GenerateDataKey function to return a plaintext data encryption key and a
// copy of the key encrypted under the customer master key (CMK) of your choosing.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Key Management Service's
// API operation Encrypt for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeNotFoundException "NotFoundException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified entity or resource could not
// be found.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeDisabledException "DisabledException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified CMK is not enabled.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeKeyUnavailableException "KeyUnavailableException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified CMK was not available. The
// request can be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeDependencyTimeoutException "DependencyTimeoutException"
2016-10-17 23:21:08 +02:00
// The system timed out while trying to fulfill the request. The request can
// be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidKeyUsageException "InvalidKeyUsageException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified KeySpec value is not valid.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidGrantTokenException "InvalidGrantTokenException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified grant token is not valid.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInternalException "InternalException"
2016-10-17 23:21:08 +02:00
// The request was rejected because an internal exception occurred. The request
// can be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidStateException "InvalidStateException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the state of the specified resource is not
// valid for this request.
//
// For more information about how key state affects the use of a CMK, see How
// Key State Affects Use of a Customer Master Key (http://docs.aws.amazon.com/kms/latest/developerguide/key-state.html)
// in the AWS Key Management Service Developer Guide.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/Encrypt
2016-02-07 17:27:24 +01:00
func ( c * KMS ) Encrypt ( input * EncryptInput ) ( * EncryptOutput , error ) {
req , out := c . EncryptRequest ( input )
err := req . Send ( )
return out , err
}
const opGenerateDataKey = "GenerateDataKey"
2016-07-15 15:49:02 +02:00
// GenerateDataKeyRequest generates a "aws/request.Request" representing the
// client's request for the GenerateDataKey operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See GenerateDataKey for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the GenerateDataKey method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the GenerateDataKeyRequest method.
// req, resp := client.GenerateDataKeyRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/GenerateDataKey
2016-02-07 17:27:24 +01:00
func ( c * KMS ) GenerateDataKeyRequest ( input * GenerateDataKeyInput ) ( req * request . Request , output * GenerateDataKeyOutput ) {
op := & request . Operation {
Name : opGenerateDataKey ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & GenerateDataKeyInput { }
}
output = & GenerateDataKeyOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-02-07 17:27:24 +01:00
return
}
2016-10-17 23:21:08 +02:00
// GenerateDataKey API operation for AWS Key Management Service.
//
2016-10-07 12:51:50 +02:00
// Returns a data encryption key that you can use in your application to encrypt
// data locally.
//
// You must specify the customer master key (CMK) under which to generate the
// data key. You must also specify the length of the data key using either the
// KeySpec or NumberOfBytes field. You must specify one field or the other,
// but not both. For common key lengths (128-bit and 256-bit symmetric keys),
// we recommend that you use KeySpec.
//
// This operation returns a plaintext copy of the data key in the Plaintext
// field of the response, and an encrypted copy of the data key in the CiphertextBlob
// field. The data key is encrypted under the CMK specified in the KeyId field
// of the request.
//
2016-11-19 19:41:01 +01:00
// We recommend that you use the following pattern to encrypt data locally in
// your application:
2016-10-07 12:51:50 +02:00
//
2016-11-19 19:41:01 +01:00
// Use this operation (GenerateDataKey) to retrieve a data encryption key.
2016-10-07 12:51:50 +02:00
//
2016-11-19 19:41:01 +01:00
// Use the plaintext data encryption key (returned in the Plaintext field of
// the response) to encrypt data locally, then erase the plaintext data key
2016-10-07 12:51:50 +02:00
// from memory.
//
2016-11-19 19:41:01 +01:00
// Store the encrypted data key (returned in the CiphertextBlob field of the
// response) alongside the locally encrypted data.
2016-10-07 12:51:50 +02:00
//
2016-11-19 19:41:01 +01:00
// To decrypt data locally:
2016-10-07 12:51:50 +02:00
//
2016-11-19 19:41:01 +01:00
// Use the Decrypt operation to decrypt the encrypted data key into a plaintext
2016-10-07 12:51:50 +02:00
// copy of the data key.
//
2016-11-19 19:41:01 +01:00
// Use the plaintext data key to decrypt data locally, then erase the plaintext
2016-10-07 12:51:50 +02:00
// data key from memory.
//
2016-11-19 19:41:01 +01:00
// To return only an encrypted copy of the data key, use GenerateDataKeyWithoutPlaintext.
2016-10-07 12:51:50 +02:00
// To return an arbitrary unpredictable byte string, use GenerateRandom.
//
// If you use the optional EncryptionContext field, you must store at least
// enough information to be able to reconstruct the full encryption context
// when you later send the ciphertext to the Decrypt operation. It is a good
// practice to choose an encryption context that you can reconstruct on the
// fly to better secure the ciphertext. For more information, see Encryption
// Context (http://docs.aws.amazon.com/kms/latest/developerguide/encryption-context.html)
// in the AWS Key Management Service Developer Guide.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Key Management Service's
// API operation GenerateDataKey for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeNotFoundException "NotFoundException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified entity or resource could not
// be found.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeDisabledException "DisabledException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified CMK is not enabled.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeKeyUnavailableException "KeyUnavailableException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified CMK was not available. The
// request can be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeDependencyTimeoutException "DependencyTimeoutException"
2016-10-17 23:21:08 +02:00
// The system timed out while trying to fulfill the request. The request can
// be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidKeyUsageException "InvalidKeyUsageException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified KeySpec value is not valid.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidGrantTokenException "InvalidGrantTokenException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified grant token is not valid.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInternalException "InternalException"
2016-10-17 23:21:08 +02:00
// The request was rejected because an internal exception occurred. The request
// can be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidStateException "InvalidStateException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the state of the specified resource is not
// valid for this request.
//
// For more information about how key state affects the use of a CMK, see How
// Key State Affects Use of a Customer Master Key (http://docs.aws.amazon.com/kms/latest/developerguide/key-state.html)
// in the AWS Key Management Service Developer Guide.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/GenerateDataKey
2016-02-07 17:27:24 +01:00
func ( c * KMS ) GenerateDataKey ( input * GenerateDataKeyInput ) ( * GenerateDataKeyOutput , error ) {
req , out := c . GenerateDataKeyRequest ( input )
err := req . Send ( )
return out , err
}
const opGenerateDataKeyWithoutPlaintext = "GenerateDataKeyWithoutPlaintext"
2016-07-15 15:49:02 +02:00
// GenerateDataKeyWithoutPlaintextRequest generates a "aws/request.Request" representing the
// client's request for the GenerateDataKeyWithoutPlaintext operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See GenerateDataKeyWithoutPlaintext for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the GenerateDataKeyWithoutPlaintext method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the GenerateDataKeyWithoutPlaintextRequest method.
// req, resp := client.GenerateDataKeyWithoutPlaintextRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/GenerateDataKeyWithoutPlaintext
2016-02-07 17:27:24 +01:00
func ( c * KMS ) GenerateDataKeyWithoutPlaintextRequest ( input * GenerateDataKeyWithoutPlaintextInput ) ( req * request . Request , output * GenerateDataKeyWithoutPlaintextOutput ) {
op := & request . Operation {
Name : opGenerateDataKeyWithoutPlaintext ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & GenerateDataKeyWithoutPlaintextInput { }
}
output = & GenerateDataKeyWithoutPlaintextOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-02-07 17:27:24 +01:00
return
}
2016-10-17 23:21:08 +02:00
// GenerateDataKeyWithoutPlaintext API operation for AWS Key Management Service.
//
2016-10-07 12:51:50 +02:00
// Returns a data encryption key encrypted under a customer master key (CMK).
// This operation is identical to GenerateDataKey but returns only the encrypted
// copy of the data key.
//
// This operation is useful in a system that has multiple components with different
// degrees of trust. For example, consider a system that stores encrypted data
// in containers. Each container stores the encrypted data and an encrypted
// copy of the data key. One component of the system, called the control plane,
// creates new containers. When it creates a new container, it uses this operation
// (GenerateDataKeyWithoutPlaintext) to get an encrypted data key and then stores
// it in the container. Later, a different component of the system, called the
// data plane, puts encrypted data into the containers. To do this, it passes
// the encrypted data key to the Decrypt operation, then uses the returned plaintext
// data key to encrypt data, and finally stores the encrypted data in the container.
// In this system, the control plane never sees the plaintext data key.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Key Management Service's
// API operation GenerateDataKeyWithoutPlaintext for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeNotFoundException "NotFoundException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified entity or resource could not
// be found.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeDisabledException "DisabledException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified CMK is not enabled.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeKeyUnavailableException "KeyUnavailableException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified CMK was not available. The
// request can be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeDependencyTimeoutException "DependencyTimeoutException"
2016-10-17 23:21:08 +02:00
// The system timed out while trying to fulfill the request. The request can
// be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidKeyUsageException "InvalidKeyUsageException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified KeySpec value is not valid.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidGrantTokenException "InvalidGrantTokenException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified grant token is not valid.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInternalException "InternalException"
2016-10-17 23:21:08 +02:00
// The request was rejected because an internal exception occurred. The request
// can be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidStateException "InvalidStateException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the state of the specified resource is not
// valid for this request.
//
// For more information about how key state affects the use of a CMK, see How
// Key State Affects Use of a Customer Master Key (http://docs.aws.amazon.com/kms/latest/developerguide/key-state.html)
// in the AWS Key Management Service Developer Guide.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/GenerateDataKeyWithoutPlaintext
2016-02-07 17:27:24 +01:00
func ( c * KMS ) GenerateDataKeyWithoutPlaintext ( input * GenerateDataKeyWithoutPlaintextInput ) ( * GenerateDataKeyWithoutPlaintextOutput , error ) {
req , out := c . GenerateDataKeyWithoutPlaintextRequest ( input )
err := req . Send ( )
return out , err
}
const opGenerateRandom = "GenerateRandom"
2016-07-15 15:49:02 +02:00
// GenerateRandomRequest generates a "aws/request.Request" representing the
// client's request for the GenerateRandom operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See GenerateRandom for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the GenerateRandom method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the GenerateRandomRequest method.
// req, resp := client.GenerateRandomRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/GenerateRandom
2016-02-07 17:27:24 +01:00
func ( c * KMS ) GenerateRandomRequest ( input * GenerateRandomInput ) ( req * request . Request , output * GenerateRandomOutput ) {
op := & request . Operation {
Name : opGenerateRandom ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & GenerateRandomInput { }
}
output = & GenerateRandomOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-02-07 17:27:24 +01:00
return
}
2016-10-17 23:21:08 +02:00
// GenerateRandom API operation for AWS Key Management Service.
//
2016-02-07 17:27:24 +01:00
// Generates an unpredictable byte string.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Key Management Service's
// API operation GenerateRandom for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeDependencyTimeoutException "DependencyTimeoutException"
2016-10-17 23:21:08 +02:00
// The system timed out while trying to fulfill the request. The request can
// be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInternalException "InternalException"
2016-10-17 23:21:08 +02:00
// The request was rejected because an internal exception occurred. The request
// can be retried.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/GenerateRandom
2016-02-07 17:27:24 +01:00
func ( c * KMS ) GenerateRandom ( input * GenerateRandomInput ) ( * GenerateRandomOutput , error ) {
req , out := c . GenerateRandomRequest ( input )
err := req . Send ( )
return out , err
}
const opGetKeyPolicy = "GetKeyPolicy"
2016-07-15 15:49:02 +02:00
// GetKeyPolicyRequest generates a "aws/request.Request" representing the
// client's request for the GetKeyPolicy operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See GetKeyPolicy for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the GetKeyPolicy method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the GetKeyPolicyRequest method.
// req, resp := client.GetKeyPolicyRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/GetKeyPolicy
2016-02-07 17:27:24 +01:00
func ( c * KMS ) GetKeyPolicyRequest ( input * GetKeyPolicyInput ) ( req * request . Request , output * GetKeyPolicyOutput ) {
op := & request . Operation {
Name : opGetKeyPolicy ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & GetKeyPolicyInput { }
}
output = & GetKeyPolicyOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-02-07 17:27:24 +01:00
return
}
2016-10-17 23:21:08 +02:00
// GetKeyPolicy API operation for AWS Key Management Service.
//
2016-02-07 17:27:24 +01:00
// Retrieves a policy attached to the specified key.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Key Management Service's
// API operation GetKeyPolicy for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeNotFoundException "NotFoundException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified entity or resource could not
// be found.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidArnException "InvalidArnException"
2016-10-17 23:21:08 +02:00
// The request was rejected because a specified ARN was not valid.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeDependencyTimeoutException "DependencyTimeoutException"
2016-10-17 23:21:08 +02:00
// The system timed out while trying to fulfill the request. The request can
// be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInternalException "InternalException"
2016-10-17 23:21:08 +02:00
// The request was rejected because an internal exception occurred. The request
// can be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidStateException "InvalidStateException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the state of the specified resource is not
// valid for this request.
//
// For more information about how key state affects the use of a CMK, see How
// Key State Affects Use of a Customer Master Key (http://docs.aws.amazon.com/kms/latest/developerguide/key-state.html)
// in the AWS Key Management Service Developer Guide.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/GetKeyPolicy
2016-02-07 17:27:24 +01:00
func ( c * KMS ) GetKeyPolicy ( input * GetKeyPolicyInput ) ( * GetKeyPolicyOutput , error ) {
req , out := c . GetKeyPolicyRequest ( input )
err := req . Send ( )
return out , err
}
const opGetKeyRotationStatus = "GetKeyRotationStatus"
2016-07-15 15:49:02 +02:00
// GetKeyRotationStatusRequest generates a "aws/request.Request" representing the
// client's request for the GetKeyRotationStatus operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See GetKeyRotationStatus for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the GetKeyRotationStatus method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the GetKeyRotationStatusRequest method.
// req, resp := client.GetKeyRotationStatusRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/GetKeyRotationStatus
2016-02-07 17:27:24 +01:00
func ( c * KMS ) GetKeyRotationStatusRequest ( input * GetKeyRotationStatusInput ) ( req * request . Request , output * GetKeyRotationStatusOutput ) {
op := & request . Operation {
Name : opGetKeyRotationStatus ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & GetKeyRotationStatusInput { }
}
output = & GetKeyRotationStatusOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-02-07 17:27:24 +01:00
return
}
2016-10-17 23:21:08 +02:00
// GetKeyRotationStatus API operation for AWS Key Management Service.
//
2016-02-07 17:27:24 +01:00
// Retrieves a Boolean value that indicates whether key rotation is enabled
// for the specified key.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Key Management Service's
// API operation GetKeyRotationStatus for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeNotFoundException "NotFoundException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified entity or resource could not
// be found.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidArnException "InvalidArnException"
2016-10-17 23:21:08 +02:00
// The request was rejected because a specified ARN was not valid.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeDependencyTimeoutException "DependencyTimeoutException"
2016-10-17 23:21:08 +02:00
// The system timed out while trying to fulfill the request. The request can
// be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInternalException "InternalException"
2016-10-17 23:21:08 +02:00
// The request was rejected because an internal exception occurred. The request
// can be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidStateException "InvalidStateException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the state of the specified resource is not
// valid for this request.
//
// For more information about how key state affects the use of a CMK, see How
// Key State Affects Use of a Customer Master Key (http://docs.aws.amazon.com/kms/latest/developerguide/key-state.html)
// in the AWS Key Management Service Developer Guide.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeUnsupportedOperationException "UnsupportedOperationException"
2016-10-17 23:21:08 +02:00
// The request was rejected because a specified parameter is not supported or
// a specified resource is not valid for this operation.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/GetKeyRotationStatus
2016-02-07 17:27:24 +01:00
func ( c * KMS ) GetKeyRotationStatus ( input * GetKeyRotationStatusInput ) ( * GetKeyRotationStatusOutput , error ) {
req , out := c . GetKeyRotationStatusRequest ( input )
err := req . Send ( )
return out , err
}
2016-08-11 19:01:51 +02:00
const opGetParametersForImport = "GetParametersForImport"
// GetParametersForImportRequest generates a "aws/request.Request" representing the
// client's request for the GetParametersForImport operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See GetParametersForImport for usage and error information.
//
2016-08-11 19:01:51 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the GetParametersForImport method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the GetParametersForImportRequest method.
// req, resp := client.GetParametersForImportRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/GetParametersForImport
2016-08-11 19:01:51 +02:00
func ( c * KMS ) GetParametersForImportRequest ( input * GetParametersForImportInput ) ( req * request . Request , output * GetParametersForImportOutput ) {
op := & request . Operation {
Name : opGetParametersForImport ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & GetParametersForImportInput { }
}
output = & GetParametersForImportOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-08-11 19:01:51 +02:00
return
}
2016-10-17 23:21:08 +02:00
// GetParametersForImport API operation for AWS Key Management Service.
//
2016-08-11 19:01:51 +02:00
// Returns the items you need in order to import key material into AWS KMS from
// your existing key management infrastructure. For more information about importing
// key material into AWS KMS, see Importing Key Material (http://docs.aws.amazon.com/kms/latest/developerguide/importing-keys.html)
// in the AWS Key Management Service Developer Guide.
//
2016-11-19 19:41:01 +01:00
// You must specify the key ID of the customer master key (CMK) into which you
// will import key material. This CMK's Origin must be EXTERNAL. You must also
// specify the wrapping algorithm and type of wrapping key (public key) that
// you will use to encrypt the key material.
2016-08-11 19:01:51 +02:00
//
2016-11-19 19:41:01 +01:00
// This operation returns a public key and an import token. Use the public key
// to encrypt the key material. Store the import token to send with a subsequent
2016-08-11 19:01:51 +02:00
// ImportKeyMaterial request. The public key and import token from the same
// response must be used together. These items are valid for 24 hours, after
// which they cannot be used for a subsequent ImportKeyMaterial request. To
// retrieve new ones, send another GetParametersForImport request.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Key Management Service's
// API operation GetParametersForImport for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidArnException "InvalidArnException"
2016-10-17 23:21:08 +02:00
// The request was rejected because a specified ARN was not valid.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeUnsupportedOperationException "UnsupportedOperationException"
2016-10-17 23:21:08 +02:00
// The request was rejected because a specified parameter is not supported or
// a specified resource is not valid for this operation.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeDependencyTimeoutException "DependencyTimeoutException"
2016-10-17 23:21:08 +02:00
// The system timed out while trying to fulfill the request. The request can
// be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeNotFoundException "NotFoundException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified entity or resource could not
// be found.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInternalException "InternalException"
2016-10-17 23:21:08 +02:00
// The request was rejected because an internal exception occurred. The request
// can be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidStateException "InvalidStateException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the state of the specified resource is not
// valid for this request.
//
// For more information about how key state affects the use of a CMK, see How
// Key State Affects Use of a Customer Master Key (http://docs.aws.amazon.com/kms/latest/developerguide/key-state.html)
// in the AWS Key Management Service Developer Guide.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/GetParametersForImport
2016-08-11 19:01:51 +02:00
func ( c * KMS ) GetParametersForImport ( input * GetParametersForImportInput ) ( * GetParametersForImportOutput , error ) {
req , out := c . GetParametersForImportRequest ( input )
err := req . Send ( )
return out , err
}
const opImportKeyMaterial = "ImportKeyMaterial"
// ImportKeyMaterialRequest generates a "aws/request.Request" representing the
// client's request for the ImportKeyMaterial operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See ImportKeyMaterial for usage and error information.
//
2016-08-11 19:01:51 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the ImportKeyMaterial method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the ImportKeyMaterialRequest method.
// req, resp := client.ImportKeyMaterialRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/ImportKeyMaterial
2016-08-11 19:01:51 +02:00
func ( c * KMS ) ImportKeyMaterialRequest ( input * ImportKeyMaterialInput ) ( req * request . Request , output * ImportKeyMaterialOutput ) {
op := & request . Operation {
Name : opImportKeyMaterial ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & ImportKeyMaterialInput { }
}
output = & ImportKeyMaterialOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-08-11 19:01:51 +02:00
return
}
2016-10-17 23:21:08 +02:00
// ImportKeyMaterial API operation for AWS Key Management Service.
//
2016-08-11 19:01:51 +02:00
// Imports key material into an AWS KMS customer master key (CMK) from your
// existing key management infrastructure. For more information about importing
// key material into AWS KMS, see Importing Key Material (http://docs.aws.amazon.com/kms/latest/developerguide/importing-keys.html)
// in the AWS Key Management Service Developer Guide.
//
2016-11-19 19:41:01 +01:00
// You must specify the key ID of the CMK to import the key material into. This
// CMK's Origin must be EXTERNAL. You must also send an import token and the
// encrypted key material. Send the import token that you received in the same
// GetParametersForImport response that contained the public key that you used
// to encrypt the key material. You must also specify whether the key material
2016-08-11 19:01:51 +02:00
// expires and if so, when. When the key material expires, AWS KMS deletes the
// key material and the CMK becomes unusable. To use the CMK again, you can
// reimport the same key material. If you set an expiration date, you can change
// it only by reimporting the same key material and specifying a new expiration
// date.
//
// When this operation is successful, the specified CMK's key state changes
// to Enabled, and you can use the CMK.
//
2016-11-19 19:41:01 +01:00
// After you successfully import key material into a CMK, you can reimport the
// same key material into that CMK, but you cannot import different key material.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Key Management Service's
// API operation ImportKeyMaterial for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidArnException "InvalidArnException"
2016-10-17 23:21:08 +02:00
// The request was rejected because a specified ARN was not valid.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeUnsupportedOperationException "UnsupportedOperationException"
2016-10-17 23:21:08 +02:00
// The request was rejected because a specified parameter is not supported or
// a specified resource is not valid for this operation.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeDependencyTimeoutException "DependencyTimeoutException"
2016-10-17 23:21:08 +02:00
// The system timed out while trying to fulfill the request. The request can
// be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeNotFoundException "NotFoundException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified entity or resource could not
// be found.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInternalException "InternalException"
2016-10-17 23:21:08 +02:00
// The request was rejected because an internal exception occurred. The request
// can be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidStateException "InvalidStateException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the state of the specified resource is not
// valid for this request.
//
// For more information about how key state affects the use of a CMK, see How
// Key State Affects Use of a Customer Master Key (http://docs.aws.amazon.com/kms/latest/developerguide/key-state.html)
// in the AWS Key Management Service Developer Guide.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidCiphertextException "InvalidCiphertextException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified ciphertext has been corrupted
// or is otherwise invalid.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeIncorrectKeyMaterialException "IncorrectKeyMaterialException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the provided key material is invalid or
// is not the same key material that was previously imported into this customer
// master key (CMK).
//
2017-02-08 14:02:41 +01:00
// * ErrCodeExpiredImportTokenException "ExpiredImportTokenException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the provided import token is expired. Use
// GetParametersForImport to retrieve a new import token and public key, use
// the new public key to encrypt the key material, and then try the request
// again.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidImportTokenException "InvalidImportTokenException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the provided import token is invalid or
// is associated with a different customer master key (CMK).
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/ImportKeyMaterial
2016-08-11 19:01:51 +02:00
func ( c * KMS ) ImportKeyMaterial ( input * ImportKeyMaterialInput ) ( * ImportKeyMaterialOutput , error ) {
req , out := c . ImportKeyMaterialRequest ( input )
err := req . Send ( )
return out , err
}
2016-02-07 17:27:24 +01:00
const opListAliases = "ListAliases"
2016-07-15 15:49:02 +02:00
// ListAliasesRequest generates a "aws/request.Request" representing the
// client's request for the ListAliases operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See ListAliases for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the ListAliases method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the ListAliasesRequest method.
// req, resp := client.ListAliasesRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/ListAliases
2016-02-07 17:27:24 +01:00
func ( c * KMS ) ListAliasesRequest ( input * ListAliasesInput ) ( req * request . Request , output * ListAliasesOutput ) {
op := & request . Operation {
Name : opListAliases ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
Paginator : & request . Paginator {
InputTokens : [ ] string { "Marker" } ,
OutputTokens : [ ] string { "NextMarker" } ,
LimitToken : "Limit" ,
TruncationToken : "Truncated" ,
} ,
}
if input == nil {
input = & ListAliasesInput { }
}
output = & ListAliasesOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-02-07 17:27:24 +01:00
return
}
2016-10-17 23:21:08 +02:00
// ListAliases API operation for AWS Key Management Service.
//
2016-02-07 17:27:24 +01:00
// Lists all of the key aliases in the account.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Key Management Service's
// API operation ListAliases for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeDependencyTimeoutException "DependencyTimeoutException"
2016-10-17 23:21:08 +02:00
// The system timed out while trying to fulfill the request. The request can
// be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidMarkerException "InvalidMarkerException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the marker that specifies where pagination
// should next begin is not valid.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInternalException "InternalException"
2016-10-17 23:21:08 +02:00
// The request was rejected because an internal exception occurred. The request
// can be retried.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/ListAliases
2016-02-07 17:27:24 +01:00
func ( c * KMS ) ListAliases ( input * ListAliasesInput ) ( * ListAliasesOutput , error ) {
req , out := c . ListAliasesRequest ( input )
err := req . Send ( )
return out , err
}
2016-07-15 15:49:02 +02:00
// ListAliasesPages iterates over the pages of a ListAliases operation,
// calling the "fn" function with the response data for each page. To stop
// iterating, return false from the fn function.
//
// See ListAliases method for more information on how to use this operation.
//
// Note: This operation can generate multiple requests to a service.
//
// // Example iterating over at most 3 pages of a ListAliases operation.
// pageNum := 0
// err := client.ListAliasesPages(params,
// func(page *ListAliasesOutput, lastPage bool) bool {
// pageNum++
// fmt.Println(page)
// return pageNum <= 3
// })
//
2016-02-07 17:27:24 +01:00
func ( c * KMS ) ListAliasesPages ( input * ListAliasesInput , fn func ( p * ListAliasesOutput , lastPage bool ) ( shouldContinue bool ) ) error {
page , _ := c . ListAliasesRequest ( input )
page . Handlers . Build . PushBack ( request . MakeAddToUserAgentFreeFormHandler ( "Paginator" ) )
return page . EachPage ( func ( p interface { } , lastPage bool ) bool {
return fn ( p . ( * ListAliasesOutput ) , lastPage )
} )
}
const opListGrants = "ListGrants"
2016-07-15 15:49:02 +02:00
// ListGrantsRequest generates a "aws/request.Request" representing the
// client's request for the ListGrants operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See ListGrants for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the ListGrants method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the ListGrantsRequest method.
// req, resp := client.ListGrantsRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/ListGrants
2016-02-07 17:27:24 +01:00
func ( c * KMS ) ListGrantsRequest ( input * ListGrantsInput ) ( req * request . Request , output * ListGrantsResponse ) {
op := & request . Operation {
Name : opListGrants ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
Paginator : & request . Paginator {
InputTokens : [ ] string { "Marker" } ,
OutputTokens : [ ] string { "NextMarker" } ,
LimitToken : "Limit" ,
TruncationToken : "Truncated" ,
} ,
}
if input == nil {
input = & ListGrantsInput { }
}
output = & ListGrantsResponse { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-02-07 17:27:24 +01:00
return
}
2016-10-17 23:21:08 +02:00
// ListGrants API operation for AWS Key Management Service.
//
2016-02-07 17:27:24 +01:00
// List the grants for a specified key.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Key Management Service's
// API operation ListGrants for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeNotFoundException "NotFoundException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified entity or resource could not
// be found.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeDependencyTimeoutException "DependencyTimeoutException"
2016-10-17 23:21:08 +02:00
// The system timed out while trying to fulfill the request. The request can
// be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidMarkerException "InvalidMarkerException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the marker that specifies where pagination
// should next begin is not valid.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidArnException "InvalidArnException"
2016-10-17 23:21:08 +02:00
// The request was rejected because a specified ARN was not valid.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInternalException "InternalException"
2016-10-17 23:21:08 +02:00
// The request was rejected because an internal exception occurred. The request
// can be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidStateException "InvalidStateException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the state of the specified resource is not
// valid for this request.
//
// For more information about how key state affects the use of a CMK, see How
// Key State Affects Use of a Customer Master Key (http://docs.aws.amazon.com/kms/latest/developerguide/key-state.html)
// in the AWS Key Management Service Developer Guide.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/ListGrants
2016-02-07 17:27:24 +01:00
func ( c * KMS ) ListGrants ( input * ListGrantsInput ) ( * ListGrantsResponse , error ) {
req , out := c . ListGrantsRequest ( input )
err := req . Send ( )
return out , err
}
2016-07-15 15:49:02 +02:00
// ListGrantsPages iterates over the pages of a ListGrants operation,
// calling the "fn" function with the response data for each page. To stop
// iterating, return false from the fn function.
//
// See ListGrants method for more information on how to use this operation.
//
// Note: This operation can generate multiple requests to a service.
//
// // Example iterating over at most 3 pages of a ListGrants operation.
// pageNum := 0
// err := client.ListGrantsPages(params,
// func(page *ListGrantsResponse, lastPage bool) bool {
// pageNum++
// fmt.Println(page)
// return pageNum <= 3
// })
//
2016-02-07 17:27:24 +01:00
func ( c * KMS ) ListGrantsPages ( input * ListGrantsInput , fn func ( p * ListGrantsResponse , lastPage bool ) ( shouldContinue bool ) ) error {
page , _ := c . ListGrantsRequest ( input )
page . Handlers . Build . PushBack ( request . MakeAddToUserAgentFreeFormHandler ( "Paginator" ) )
return page . EachPage ( func ( p interface { } , lastPage bool ) bool {
return fn ( p . ( * ListGrantsResponse ) , lastPage )
} )
}
const opListKeyPolicies = "ListKeyPolicies"
2016-07-15 15:49:02 +02:00
// ListKeyPoliciesRequest generates a "aws/request.Request" representing the
// client's request for the ListKeyPolicies operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See ListKeyPolicies for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the ListKeyPolicies method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the ListKeyPoliciesRequest method.
// req, resp := client.ListKeyPoliciesRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/ListKeyPolicies
2016-02-07 17:27:24 +01:00
func ( c * KMS ) ListKeyPoliciesRequest ( input * ListKeyPoliciesInput ) ( req * request . Request , output * ListKeyPoliciesOutput ) {
op := & request . Operation {
Name : opListKeyPolicies ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
Paginator : & request . Paginator {
InputTokens : [ ] string { "Marker" } ,
OutputTokens : [ ] string { "NextMarker" } ,
LimitToken : "Limit" ,
TruncationToken : "Truncated" ,
} ,
}
if input == nil {
input = & ListKeyPoliciesInput { }
}
output = & ListKeyPoliciesOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-02-07 17:27:24 +01:00
return
}
2016-10-17 23:21:08 +02:00
// ListKeyPolicies API operation for AWS Key Management Service.
//
2016-02-07 17:27:24 +01:00
// Retrieves a list of policies attached to a key.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Key Management Service's
// API operation ListKeyPolicies for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeNotFoundException "NotFoundException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified entity or resource could not
// be found.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidArnException "InvalidArnException"
2016-10-17 23:21:08 +02:00
// The request was rejected because a specified ARN was not valid.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeDependencyTimeoutException "DependencyTimeoutException"
2016-10-17 23:21:08 +02:00
// The system timed out while trying to fulfill the request. The request can
// be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInternalException "InternalException"
2016-10-17 23:21:08 +02:00
// The request was rejected because an internal exception occurred. The request
// can be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidStateException "InvalidStateException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the state of the specified resource is not
// valid for this request.
//
// For more information about how key state affects the use of a CMK, see How
// Key State Affects Use of a Customer Master Key (http://docs.aws.amazon.com/kms/latest/developerguide/key-state.html)
// in the AWS Key Management Service Developer Guide.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/ListKeyPolicies
2016-02-07 17:27:24 +01:00
func ( c * KMS ) ListKeyPolicies ( input * ListKeyPoliciesInput ) ( * ListKeyPoliciesOutput , error ) {
req , out := c . ListKeyPoliciesRequest ( input )
err := req . Send ( )
return out , err
}
2016-07-15 15:49:02 +02:00
// ListKeyPoliciesPages iterates over the pages of a ListKeyPolicies operation,
// calling the "fn" function with the response data for each page. To stop
// iterating, return false from the fn function.
//
// See ListKeyPolicies method for more information on how to use this operation.
//
// Note: This operation can generate multiple requests to a service.
//
// // Example iterating over at most 3 pages of a ListKeyPolicies operation.
// pageNum := 0
// err := client.ListKeyPoliciesPages(params,
// func(page *ListKeyPoliciesOutput, lastPage bool) bool {
// pageNum++
// fmt.Println(page)
// return pageNum <= 3
// })
//
2016-02-07 17:27:24 +01:00
func ( c * KMS ) ListKeyPoliciesPages ( input * ListKeyPoliciesInput , fn func ( p * ListKeyPoliciesOutput , lastPage bool ) ( shouldContinue bool ) ) error {
page , _ := c . ListKeyPoliciesRequest ( input )
page . Handlers . Build . PushBack ( request . MakeAddToUserAgentFreeFormHandler ( "Paginator" ) )
return page . EachPage ( func ( p interface { } , lastPage bool ) bool {
return fn ( p . ( * ListKeyPoliciesOutput ) , lastPage )
} )
}
const opListKeys = "ListKeys"
2016-07-15 15:49:02 +02:00
// ListKeysRequest generates a "aws/request.Request" representing the
// client's request for the ListKeys operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See ListKeys for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the ListKeys method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the ListKeysRequest method.
// req, resp := client.ListKeysRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/ListKeys
2016-02-07 17:27:24 +01:00
func ( c * KMS ) ListKeysRequest ( input * ListKeysInput ) ( req * request . Request , output * ListKeysOutput ) {
op := & request . Operation {
Name : opListKeys ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
Paginator : & request . Paginator {
InputTokens : [ ] string { "Marker" } ,
OutputTokens : [ ] string { "NextMarker" } ,
LimitToken : "Limit" ,
TruncationToken : "Truncated" ,
} ,
}
if input == nil {
input = & ListKeysInput { }
}
output = & ListKeysOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-02-07 17:27:24 +01:00
return
}
2016-10-17 23:21:08 +02:00
// ListKeys API operation for AWS Key Management Service.
//
2016-02-07 17:27:24 +01:00
// Lists the customer master keys.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Key Management Service's
// API operation ListKeys for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeDependencyTimeoutException "DependencyTimeoutException"
2016-10-17 23:21:08 +02:00
// The system timed out while trying to fulfill the request. The request can
// be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInternalException "InternalException"
2016-10-17 23:21:08 +02:00
// The request was rejected because an internal exception occurred. The request
// can be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidMarkerException "InvalidMarkerException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the marker that specifies where pagination
// should next begin is not valid.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/ListKeys
2016-02-07 17:27:24 +01:00
func ( c * KMS ) ListKeys ( input * ListKeysInput ) ( * ListKeysOutput , error ) {
req , out := c . ListKeysRequest ( input )
err := req . Send ( )
return out , err
}
2016-07-15 15:49:02 +02:00
// ListKeysPages iterates over the pages of a ListKeys operation,
// calling the "fn" function with the response data for each page. To stop
// iterating, return false from the fn function.
//
// See ListKeys method for more information on how to use this operation.
//
// Note: This operation can generate multiple requests to a service.
//
// // Example iterating over at most 3 pages of a ListKeys operation.
// pageNum := 0
// err := client.ListKeysPages(params,
// func(page *ListKeysOutput, lastPage bool) bool {
// pageNum++
// fmt.Println(page)
// return pageNum <= 3
// })
//
2016-02-07 17:27:24 +01:00
func ( c * KMS ) ListKeysPages ( input * ListKeysInput , fn func ( p * ListKeysOutput , lastPage bool ) ( shouldContinue bool ) ) error {
page , _ := c . ListKeysRequest ( input )
page . Handlers . Build . PushBack ( request . MakeAddToUserAgentFreeFormHandler ( "Paginator" ) )
return page . EachPage ( func ( p interface { } , lastPage bool ) bool {
return fn ( p . ( * ListKeysOutput ) , lastPage )
} )
}
2017-02-20 18:20:36 +01:00
const opListResourceTags = "ListResourceTags"
// ListResourceTagsRequest generates a "aws/request.Request" representing the
// client's request for the ListResourceTags operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See ListResourceTags for usage and error information.
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the ListResourceTags method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the ListResourceTagsRequest method.
// req, resp := client.ListResourceTagsRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/ListResourceTags
func ( c * KMS ) ListResourceTagsRequest ( input * ListResourceTagsInput ) ( req * request . Request , output * ListResourceTagsOutput ) {
op := & request . Operation {
Name : opListResourceTags ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & ListResourceTagsInput { }
}
output = & ListResourceTagsOutput { }
req = c . newRequest ( op , input , output )
return
}
// ListResourceTags API operation for AWS Key Management Service.
//
// Returns a list of all tags for the specified customer master key (CMK).
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Key Management Service's
// API operation ListResourceTags for usage and error information.
//
// Returned Error Codes:
// * ErrCodeInternalException "InternalException"
// The request was rejected because an internal exception occurred. The request
// can be retried.
//
// * ErrCodeNotFoundException "NotFoundException"
// The request was rejected because the specified entity or resource could not
// be found.
//
// * ErrCodeInvalidArnException "InvalidArnException"
// The request was rejected because a specified ARN was not valid.
//
// * ErrCodeInvalidMarkerException "InvalidMarkerException"
// The request was rejected because the marker that specifies where pagination
// should next begin is not valid.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/ListResourceTags
func ( c * KMS ) ListResourceTags ( input * ListResourceTagsInput ) ( * ListResourceTagsOutput , error ) {
req , out := c . ListResourceTagsRequest ( input )
err := req . Send ( )
return out , err
}
2016-02-07 17:27:24 +01:00
const opListRetirableGrants = "ListRetirableGrants"
2016-07-15 15:49:02 +02:00
// ListRetirableGrantsRequest generates a "aws/request.Request" representing the
// client's request for the ListRetirableGrants operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See ListRetirableGrants for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the ListRetirableGrants method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the ListRetirableGrantsRequest method.
// req, resp := client.ListRetirableGrantsRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/ListRetirableGrants
2016-02-07 17:27:24 +01:00
func ( c * KMS ) ListRetirableGrantsRequest ( input * ListRetirableGrantsInput ) ( req * request . Request , output * ListGrantsResponse ) {
op := & request . Operation {
Name : opListRetirableGrants ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & ListRetirableGrantsInput { }
}
output = & ListGrantsResponse { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-02-07 17:27:24 +01:00
return
}
2016-10-17 23:21:08 +02:00
// ListRetirableGrants API operation for AWS Key Management Service.
//
2016-02-07 17:27:24 +01:00
// Returns a list of all grants for which the grant's RetiringPrincipal matches
// the one specified.
//
// A typical use is to list all grants that you are able to retire. To retire
// a grant, use RetireGrant.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Key Management Service's
// API operation ListRetirableGrants for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeDependencyTimeoutException "DependencyTimeoutException"
2016-10-17 23:21:08 +02:00
// The system timed out while trying to fulfill the request. The request can
// be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidMarkerException "InvalidMarkerException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the marker that specifies where pagination
// should next begin is not valid.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidArnException "InvalidArnException"
2016-10-17 23:21:08 +02:00
// The request was rejected because a specified ARN was not valid.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeNotFoundException "NotFoundException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified entity or resource could not
// be found.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInternalException "InternalException"
2016-10-17 23:21:08 +02:00
// The request was rejected because an internal exception occurred. The request
// can be retried.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/ListRetirableGrants
2016-02-07 17:27:24 +01:00
func ( c * KMS ) ListRetirableGrants ( input * ListRetirableGrantsInput ) ( * ListGrantsResponse , error ) {
req , out := c . ListRetirableGrantsRequest ( input )
err := req . Send ( )
return out , err
}
const opPutKeyPolicy = "PutKeyPolicy"
2016-07-15 15:49:02 +02:00
// PutKeyPolicyRequest generates a "aws/request.Request" representing the
// client's request for the PutKeyPolicy operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See PutKeyPolicy for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the PutKeyPolicy method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the PutKeyPolicyRequest method.
// req, resp := client.PutKeyPolicyRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/PutKeyPolicy
2016-02-07 17:27:24 +01:00
func ( c * KMS ) PutKeyPolicyRequest ( input * PutKeyPolicyInput ) ( req * request . Request , output * PutKeyPolicyOutput ) {
op := & request . Operation {
Name : opPutKeyPolicy ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & PutKeyPolicyInput { }
}
2017-01-23 22:22:31 +01:00
output = & PutKeyPolicyOutput { }
2016-02-07 17:27:24 +01:00
req = c . newRequest ( op , input , output )
2016-03-11 01:27:37 +01:00
req . Handlers . Unmarshal . Remove ( jsonrpc . UnmarshalHandler )
req . Handlers . Unmarshal . PushBackNamed ( protocol . UnmarshalDiscardBodyHandler )
2016-02-07 17:27:24 +01:00
return
}
2016-10-17 23:21:08 +02:00
// PutKeyPolicy API operation for AWS Key Management Service.
//
2016-07-15 15:49:02 +02:00
// Attaches a key policy to the specified customer master key (CMK).
//
// For more information about key policies, see Key Policies (http://docs.aws.amazon.com/kms/latest/developerguide/key-policies.html)
// in the AWS Key Management Service Developer Guide.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Key Management Service's
// API operation PutKeyPolicy for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeNotFoundException "NotFoundException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified entity or resource could not
// be found.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidArnException "InvalidArnException"
2016-10-17 23:21:08 +02:00
// The request was rejected because a specified ARN was not valid.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeMalformedPolicyDocumentException "MalformedPolicyDocumentException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified policy is not syntactically
// or semantically correct.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeDependencyTimeoutException "DependencyTimeoutException"
2016-10-17 23:21:08 +02:00
// The system timed out while trying to fulfill the request. The request can
// be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeUnsupportedOperationException "UnsupportedOperationException"
2016-10-17 23:21:08 +02:00
// The request was rejected because a specified parameter is not supported or
// a specified resource is not valid for this operation.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInternalException "InternalException"
2016-10-17 23:21:08 +02:00
// The request was rejected because an internal exception occurred. The request
// can be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeLimitExceededException "LimitExceededException"
2016-10-17 23:21:08 +02:00
// The request was rejected because a limit was exceeded. For more information,
// see Limits (http://docs.aws.amazon.com/kms/latest/developerguide/limits.html)
// in the AWS Key Management Service Developer Guide.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidStateException "InvalidStateException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the state of the specified resource is not
// valid for this request.
//
// For more information about how key state affects the use of a CMK, see How
// Key State Affects Use of a Customer Master Key (http://docs.aws.amazon.com/kms/latest/developerguide/key-state.html)
// in the AWS Key Management Service Developer Guide.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/PutKeyPolicy
2016-02-07 17:27:24 +01:00
func ( c * KMS ) PutKeyPolicy ( input * PutKeyPolicyInput ) ( * PutKeyPolicyOutput , error ) {
req , out := c . PutKeyPolicyRequest ( input )
err := req . Send ( )
return out , err
}
const opReEncrypt = "ReEncrypt"
2016-07-15 15:49:02 +02:00
// ReEncryptRequest generates a "aws/request.Request" representing the
// client's request for the ReEncrypt operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See ReEncrypt for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the ReEncrypt method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the ReEncryptRequest method.
// req, resp := client.ReEncryptRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/ReEncrypt
2016-02-07 17:27:24 +01:00
func ( c * KMS ) ReEncryptRequest ( input * ReEncryptInput ) ( req * request . Request , output * ReEncryptOutput ) {
op := & request . Operation {
Name : opReEncrypt ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & ReEncryptInput { }
}
output = & ReEncryptOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-02-07 17:27:24 +01:00
return
}
2016-10-17 23:21:08 +02:00
// ReEncrypt API operation for AWS Key Management Service.
//
2017-01-02 21:35:31 +01:00
// Encrypts data on the server side with a new customer master key (CMK) without
// exposing the plaintext of the data on the client side. The data is first
// decrypted and then reencrypted. You can also use this operation to change
// the encryption context of a ciphertext.
2016-02-07 17:27:24 +01:00
//
2017-01-02 21:35:31 +01:00
// Unlike other operations, ReEncrypt is authorized twice, once as ReEncryptFrom
// on the source CMK and once as ReEncryptTo on the destination CMK. We recommend
// that you include the "kms:ReEncrypt*" permission in your key policies (http://docs.aws.amazon.com/kms/latest/developerguide/key-policies.html)
// to permit reencryption from or to the CMK. This permission is automatically
// included in the key policy when you create a CMK through the console, but
// you must include it manually when you create a CMK programmatically or when
// you set a key policy with the PutKeyPolicy operation.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Key Management Service's
// API operation ReEncrypt for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeNotFoundException "NotFoundException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified entity or resource could not
// be found.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeDisabledException "DisabledException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified CMK is not enabled.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidCiphertextException "InvalidCiphertextException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified ciphertext has been corrupted
// or is otherwise invalid.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeKeyUnavailableException "KeyUnavailableException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified CMK was not available. The
// request can be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeDependencyTimeoutException "DependencyTimeoutException"
2016-10-17 23:21:08 +02:00
// The system timed out while trying to fulfill the request. The request can
// be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidKeyUsageException "InvalidKeyUsageException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified KeySpec value is not valid.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidGrantTokenException "InvalidGrantTokenException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified grant token is not valid.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInternalException "InternalException"
2016-10-17 23:21:08 +02:00
// The request was rejected because an internal exception occurred. The request
// can be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidStateException "InvalidStateException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the state of the specified resource is not
// valid for this request.
//
// For more information about how key state affects the use of a CMK, see How
// Key State Affects Use of a Customer Master Key (http://docs.aws.amazon.com/kms/latest/developerguide/key-state.html)
// in the AWS Key Management Service Developer Guide.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/ReEncrypt
2016-02-07 17:27:24 +01:00
func ( c * KMS ) ReEncrypt ( input * ReEncryptInput ) ( * ReEncryptOutput , error ) {
req , out := c . ReEncryptRequest ( input )
err := req . Send ( )
return out , err
}
const opRetireGrant = "RetireGrant"
2016-07-15 15:49:02 +02:00
// RetireGrantRequest generates a "aws/request.Request" representing the
// client's request for the RetireGrant operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See RetireGrant for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the RetireGrant method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the RetireGrantRequest method.
// req, resp := client.RetireGrantRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/RetireGrant
2016-02-07 17:27:24 +01:00
func ( c * KMS ) RetireGrantRequest ( input * RetireGrantInput ) ( req * request . Request , output * RetireGrantOutput ) {
op := & request . Operation {
Name : opRetireGrant ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & RetireGrantInput { }
}
2017-01-23 22:22:31 +01:00
output = & RetireGrantOutput { }
2016-02-07 17:27:24 +01:00
req = c . newRequest ( op , input , output )
2016-03-11 01:27:37 +01:00
req . Handlers . Unmarshal . Remove ( jsonrpc . UnmarshalHandler )
req . Handlers . Unmarshal . PushBackNamed ( protocol . UnmarshalDiscardBodyHandler )
2016-02-07 17:27:24 +01:00
return
}
2016-10-17 23:21:08 +02:00
// RetireGrant API operation for AWS Key Management Service.
//
2017-01-02 21:35:31 +01:00
// Retires a grant. To clean up, you can retire a grant when you're done using
// it. You should revoke a grant when you intend to actively deny operations
2016-07-15 15:49:02 +02:00
// that depend on it. The following are permitted to call this API:
//
2017-01-02 21:35:31 +01:00
// * The AWS account (root user) under which the grant was created
2016-07-15 15:49:02 +02:00
//
2017-01-02 21:35:31 +01:00
// * The RetiringPrincipal, if present in the grant
2016-07-15 15:49:02 +02:00
//
2017-01-02 21:35:31 +01:00
// * The GranteePrincipal, if RetireGrant is an operation specified in the
// grant
2016-07-15 15:49:02 +02:00
//
2017-01-02 21:35:31 +01:00
// You must identify the grant to retire by its grant token or by a combination
// of the grant ID and the Amazon Resource Name (ARN) of the customer master
// key (CMK). A grant token is a unique variable-length base64-encoded string.
// A grant ID is a 64 character unique identifier of a grant. The CreateGrant
// operation returns both.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Key Management Service's
// API operation RetireGrant for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidGrantTokenException "InvalidGrantTokenException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified grant token is not valid.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidGrantIdException "InvalidGrantIdException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified GrantId is not valid.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeNotFoundException "NotFoundException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified entity or resource could not
// be found.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeDependencyTimeoutException "DependencyTimeoutException"
2016-10-17 23:21:08 +02:00
// The system timed out while trying to fulfill the request. The request can
// be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInternalException "InternalException"
2016-10-17 23:21:08 +02:00
// The request was rejected because an internal exception occurred. The request
// can be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidStateException "InvalidStateException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the state of the specified resource is not
// valid for this request.
//
// For more information about how key state affects the use of a CMK, see How
// Key State Affects Use of a Customer Master Key (http://docs.aws.amazon.com/kms/latest/developerguide/key-state.html)
// in the AWS Key Management Service Developer Guide.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/RetireGrant
2016-02-07 17:27:24 +01:00
func ( c * KMS ) RetireGrant ( input * RetireGrantInput ) ( * RetireGrantOutput , error ) {
req , out := c . RetireGrantRequest ( input )
err := req . Send ( )
return out , err
}
const opRevokeGrant = "RevokeGrant"
2016-07-15 15:49:02 +02:00
// RevokeGrantRequest generates a "aws/request.Request" representing the
// client's request for the RevokeGrant operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See RevokeGrant for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the RevokeGrant method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the RevokeGrantRequest method.
// req, resp := client.RevokeGrantRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/RevokeGrant
2016-02-07 17:27:24 +01:00
func ( c * KMS ) RevokeGrantRequest ( input * RevokeGrantInput ) ( req * request . Request , output * RevokeGrantOutput ) {
op := & request . Operation {
Name : opRevokeGrant ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & RevokeGrantInput { }
}
2017-01-23 22:22:31 +01:00
output = & RevokeGrantOutput { }
2016-02-07 17:27:24 +01:00
req = c . newRequest ( op , input , output )
2016-03-11 01:27:37 +01:00
req . Handlers . Unmarshal . Remove ( jsonrpc . UnmarshalHandler )
req . Handlers . Unmarshal . PushBackNamed ( protocol . UnmarshalDiscardBodyHandler )
2016-02-07 17:27:24 +01:00
return
}
2016-10-17 23:21:08 +02:00
// RevokeGrant API operation for AWS Key Management Service.
//
2016-02-07 17:27:24 +01:00
// Revokes a grant. You can revoke a grant to actively deny operations that
// depend on it.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Key Management Service's
// API operation RevokeGrant for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeNotFoundException "NotFoundException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified entity or resource could not
// be found.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeDependencyTimeoutException "DependencyTimeoutException"
2016-10-17 23:21:08 +02:00
// The system timed out while trying to fulfill the request. The request can
// be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidArnException "InvalidArnException"
2016-10-17 23:21:08 +02:00
// The request was rejected because a specified ARN was not valid.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidGrantIdException "InvalidGrantIdException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified GrantId is not valid.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInternalException "InternalException"
2016-10-17 23:21:08 +02:00
// The request was rejected because an internal exception occurred. The request
// can be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidStateException "InvalidStateException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the state of the specified resource is not
// valid for this request.
//
// For more information about how key state affects the use of a CMK, see How
// Key State Affects Use of a Customer Master Key (http://docs.aws.amazon.com/kms/latest/developerguide/key-state.html)
// in the AWS Key Management Service Developer Guide.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/RevokeGrant
2016-02-07 17:27:24 +01:00
func ( c * KMS ) RevokeGrant ( input * RevokeGrantInput ) ( * RevokeGrantOutput , error ) {
req , out := c . RevokeGrantRequest ( input )
err := req . Send ( )
return out , err
}
const opScheduleKeyDeletion = "ScheduleKeyDeletion"
2016-07-15 15:49:02 +02:00
// ScheduleKeyDeletionRequest generates a "aws/request.Request" representing the
// client's request for the ScheduleKeyDeletion operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See ScheduleKeyDeletion for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the ScheduleKeyDeletion method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the ScheduleKeyDeletionRequest method.
// req, resp := client.ScheduleKeyDeletionRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/ScheduleKeyDeletion
2016-02-07 17:27:24 +01:00
func ( c * KMS ) ScheduleKeyDeletionRequest ( input * ScheduleKeyDeletionInput ) ( req * request . Request , output * ScheduleKeyDeletionOutput ) {
op := & request . Operation {
Name : opScheduleKeyDeletion ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & ScheduleKeyDeletionInput { }
}
output = & ScheduleKeyDeletionOutput { }
2017-01-23 22:22:31 +01:00
req = c . newRequest ( op , input , output )
2016-02-07 17:27:24 +01:00
return
}
2016-10-17 23:21:08 +02:00
// ScheduleKeyDeletion API operation for AWS Key Management Service.
//
2016-02-07 17:27:24 +01:00
// Schedules the deletion of a customer master key (CMK). You may provide a
// waiting period, specified in days, before deletion occurs. If you do not
// provide a waiting period, the default period of 30 days is used. When this
// operation is successful, the state of the CMK changes to PendingDeletion.
// Before the waiting period ends, you can use CancelKeyDeletion to cancel the
// deletion of the CMK. After the waiting period ends, AWS KMS deletes the CMK
2017-01-02 21:35:31 +01:00
// and all AWS KMS data associated with it, including all aliases that refer
2016-02-07 17:27:24 +01:00
// to it.
//
2016-11-19 19:41:01 +01:00
// Deleting a CMK is a destructive and potentially dangerous operation. When
2016-02-07 17:27:24 +01:00
// a CMK is deleted, all data that was encrypted under the CMK is rendered unrecoverable.
// To restrict the use of a CMK without deleting it, use DisableKey.
//
2016-11-19 19:41:01 +01:00
// For more information about scheduling a CMK for deletion, see Deleting Customer
// Master Keys (http://docs.aws.amazon.com/kms/latest/developerguide/deleting-keys.html)
2016-02-07 17:27:24 +01:00
// in the AWS Key Management Service Developer Guide.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Key Management Service's
// API operation ScheduleKeyDeletion for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeNotFoundException "NotFoundException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified entity or resource could not
// be found.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidArnException "InvalidArnException"
2016-10-17 23:21:08 +02:00
// The request was rejected because a specified ARN was not valid.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeDependencyTimeoutException "DependencyTimeoutException"
2016-10-17 23:21:08 +02:00
// The system timed out while trying to fulfill the request. The request can
// be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInternalException "InternalException"
2016-10-17 23:21:08 +02:00
// The request was rejected because an internal exception occurred. The request
// can be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidStateException "InvalidStateException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the state of the specified resource is not
// valid for this request.
//
// For more information about how key state affects the use of a CMK, see How
// Key State Affects Use of a Customer Master Key (http://docs.aws.amazon.com/kms/latest/developerguide/key-state.html)
// in the AWS Key Management Service Developer Guide.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/ScheduleKeyDeletion
2016-02-07 17:27:24 +01:00
func ( c * KMS ) ScheduleKeyDeletion ( input * ScheduleKeyDeletionInput ) ( * ScheduleKeyDeletionOutput , error ) {
req , out := c . ScheduleKeyDeletionRequest ( input )
err := req . Send ( )
return out , err
}
2017-02-20 18:20:36 +01:00
const opTagResource = "TagResource"
// TagResourceRequest generates a "aws/request.Request" representing the
// client's request for the TagResource operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See TagResource for usage and error information.
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the TagResource method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the TagResourceRequest method.
// req, resp := client.TagResourceRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/TagResource
func ( c * KMS ) TagResourceRequest ( input * TagResourceInput ) ( req * request . Request , output * TagResourceOutput ) {
op := & request . Operation {
Name : opTagResource ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & TagResourceInput { }
}
output = & TagResourceOutput { }
req = c . newRequest ( op , input , output )
req . Handlers . Unmarshal . Remove ( jsonrpc . UnmarshalHandler )
req . Handlers . Unmarshal . PushBackNamed ( protocol . UnmarshalDiscardBodyHandler )
return
}
// TagResource API operation for AWS Key Management Service.
//
// Adds or overwrites one or more tags for the specified customer master key
// (CMK).
//
// Each tag consists of a tag key and a tag value. Tag keys and tag values are
// both required, but tag values can be empty (null) strings.
//
// You cannot use the same tag key more than once per CMK. For example, consider
// a CMK with one tag whose tag key is Purpose and tag value is Test. If you
// send a TagResource request for this CMK with a tag key of Purpose and a tag
// value of Prod, it does not create a second tag. Instead, the original tag
// is overwritten with the new tag value.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Key Management Service's
// API operation TagResource for usage and error information.
//
// Returned Error Codes:
// * ErrCodeInternalException "InternalException"
// The request was rejected because an internal exception occurred. The request
// can be retried.
//
// * ErrCodeNotFoundException "NotFoundException"
// The request was rejected because the specified entity or resource could not
// be found.
//
// * ErrCodeInvalidArnException "InvalidArnException"
// The request was rejected because a specified ARN was not valid.
//
// * ErrCodeInvalidStateException "InvalidStateException"
// The request was rejected because the state of the specified resource is not
// valid for this request.
//
// For more information about how key state affects the use of a CMK, see How
// Key State Affects Use of a Customer Master Key (http://docs.aws.amazon.com/kms/latest/developerguide/key-state.html)
// in the AWS Key Management Service Developer Guide.
//
// * ErrCodeLimitExceededException "LimitExceededException"
// The request was rejected because a limit was exceeded. For more information,
// see Limits (http://docs.aws.amazon.com/kms/latest/developerguide/limits.html)
// in the AWS Key Management Service Developer Guide.
//
// * ErrCodeTagException "TagException"
// The request was rejected because one or more tags are not valid.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/TagResource
func ( c * KMS ) TagResource ( input * TagResourceInput ) ( * TagResourceOutput , error ) {
req , out := c . TagResourceRequest ( input )
err := req . Send ( )
return out , err
}
const opUntagResource = "UntagResource"
// UntagResourceRequest generates a "aws/request.Request" representing the
// client's request for the UntagResource operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
// See UntagResource for usage and error information.
//
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the UntagResource method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the UntagResourceRequest method.
// req, resp := client.UntagResourceRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/UntagResource
func ( c * KMS ) UntagResourceRequest ( input * UntagResourceInput ) ( req * request . Request , output * UntagResourceOutput ) {
op := & request . Operation {
Name : opUntagResource ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & UntagResourceInput { }
}
output = & UntagResourceOutput { }
req = c . newRequest ( op , input , output )
req . Handlers . Unmarshal . Remove ( jsonrpc . UnmarshalHandler )
req . Handlers . Unmarshal . PushBackNamed ( protocol . UnmarshalDiscardBodyHandler )
return
}
// UntagResource API operation for AWS Key Management Service.
//
// Removes the specified tag or tags from the specified customer master key
// (CMK).
//
// To remove a tag, you specify the tag key for each tag to remove. You do not
// specify the tag value. To overwrite the tag value for an existing tag, use
// TagResource.
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Key Management Service's
// API operation UntagResource for usage and error information.
//
// Returned Error Codes:
// * ErrCodeInternalException "InternalException"
// The request was rejected because an internal exception occurred. The request
// can be retried.
//
// * ErrCodeNotFoundException "NotFoundException"
// The request was rejected because the specified entity or resource could not
// be found.
//
// * ErrCodeInvalidArnException "InvalidArnException"
// The request was rejected because a specified ARN was not valid.
//
// * ErrCodeInvalidStateException "InvalidStateException"
// The request was rejected because the state of the specified resource is not
// valid for this request.
//
// For more information about how key state affects the use of a CMK, see How
// Key State Affects Use of a Customer Master Key (http://docs.aws.amazon.com/kms/latest/developerguide/key-state.html)
// in the AWS Key Management Service Developer Guide.
//
// * ErrCodeTagException "TagException"
// The request was rejected because one or more tags are not valid.
//
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/UntagResource
func ( c * KMS ) UntagResource ( input * UntagResourceInput ) ( * UntagResourceOutput , error ) {
req , out := c . UntagResourceRequest ( input )
err := req . Send ( )
return out , err
}
2016-02-07 17:27:24 +01:00
const opUpdateAlias = "UpdateAlias"
2016-07-15 15:49:02 +02:00
// UpdateAliasRequest generates a "aws/request.Request" representing the
// client's request for the UpdateAlias operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See UpdateAlias for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the UpdateAlias method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the UpdateAliasRequest method.
// req, resp := client.UpdateAliasRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/UpdateAlias
2016-02-07 17:27:24 +01:00
func ( c * KMS ) UpdateAliasRequest ( input * UpdateAliasInput ) ( req * request . Request , output * UpdateAliasOutput ) {
op := & request . Operation {
Name : opUpdateAlias ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & UpdateAliasInput { }
}
2017-01-23 22:22:31 +01:00
output = & UpdateAliasOutput { }
2016-02-07 17:27:24 +01:00
req = c . newRequest ( op , input , output )
2016-03-11 01:27:37 +01:00
req . Handlers . Unmarshal . Remove ( jsonrpc . UnmarshalHandler )
req . Handlers . Unmarshal . PushBackNamed ( protocol . UnmarshalDiscardBodyHandler )
2016-02-07 17:27:24 +01:00
return
}
2016-10-17 23:21:08 +02:00
// UpdateAlias API operation for AWS Key Management Service.
//
2016-02-07 17:27:24 +01:00
// Updates an alias to map it to a different key.
//
// An alias is not a property of a key. Therefore, an alias can be mapped to
// and unmapped from an existing key without changing the properties of the
// key.
//
2016-11-19 19:41:01 +01:00
// An alias name can contain only alphanumeric characters, forward slashes (/),
// underscores (_), and dashes (-). An alias must start with the word "alias"
2016-02-07 17:27:24 +01:00
// followed by a forward slash (alias/). An alias that begins with "aws" after
// the forward slash (alias/aws...) is reserved by Amazon Web Services (AWS).
//
// The alias and the key it is mapped to must be in the same AWS account and
// the same region.
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Key Management Service's
// API operation UpdateAlias for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeDependencyTimeoutException "DependencyTimeoutException"
2016-10-17 23:21:08 +02:00
// The system timed out while trying to fulfill the request. The request can
// be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeNotFoundException "NotFoundException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified entity or resource could not
// be found.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInternalException "InternalException"
2016-10-17 23:21:08 +02:00
// The request was rejected because an internal exception occurred. The request
// can be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidStateException "InvalidStateException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the state of the specified resource is not
// valid for this request.
//
// For more information about how key state affects the use of a CMK, see How
// Key State Affects Use of a Customer Master Key (http://docs.aws.amazon.com/kms/latest/developerguide/key-state.html)
// in the AWS Key Management Service Developer Guide.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/UpdateAlias
2016-02-07 17:27:24 +01:00
func ( c * KMS ) UpdateAlias ( input * UpdateAliasInput ) ( * UpdateAliasOutput , error ) {
req , out := c . UpdateAliasRequest ( input )
err := req . Send ( )
return out , err
}
const opUpdateKeyDescription = "UpdateKeyDescription"
2016-07-15 15:49:02 +02:00
// UpdateKeyDescriptionRequest generates a "aws/request.Request" representing the
// client's request for the UpdateKeyDescription operation. The "output" return
// value can be used to capture response data after the request's "Send" method
// is called.
//
2016-10-17 23:21:08 +02:00
// See UpdateKeyDescription for usage and error information.
//
2016-07-15 15:49:02 +02:00
// Creating a request object using this method should be used when you want to inject
// custom logic into the request's lifecycle using a custom handler, or if you want to
// access properties on the request object before or after sending the request. If
// you just want the service response, call the UpdateKeyDescription method directly
// instead.
//
// Note: You must call the "Send" method on the returned request object in order
// to execute the request.
//
// // Example sending a request using the UpdateKeyDescriptionRequest method.
// req, resp := client.UpdateKeyDescriptionRequest(params)
//
// err := req.Send()
// if err == nil { // resp is now filled
// fmt.Println(resp)
// }
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/UpdateKeyDescription
2016-02-07 17:27:24 +01:00
func ( c * KMS ) UpdateKeyDescriptionRequest ( input * UpdateKeyDescriptionInput ) ( req * request . Request , output * UpdateKeyDescriptionOutput ) {
op := & request . Operation {
Name : opUpdateKeyDescription ,
HTTPMethod : "POST" ,
HTTPPath : "/" ,
}
if input == nil {
input = & UpdateKeyDescriptionInput { }
}
2017-01-23 22:22:31 +01:00
output = & UpdateKeyDescriptionOutput { }
2016-02-07 17:27:24 +01:00
req = c . newRequest ( op , input , output )
2016-03-11 01:27:37 +01:00
req . Handlers . Unmarshal . Remove ( jsonrpc . UnmarshalHandler )
req . Handlers . Unmarshal . PushBackNamed ( protocol . UnmarshalDiscardBodyHandler )
2016-02-07 17:27:24 +01:00
return
}
2016-10-17 23:21:08 +02:00
// UpdateKeyDescription API operation for AWS Key Management Service.
//
2017-01-02 21:35:31 +01:00
// Updates the description of a customer master key (CMK).
2016-10-17 23:21:08 +02:00
//
// Returns awserr.Error for service API and SDK errors. Use runtime type assertions
// with awserr.Error's Code and Message methods to get detailed information about
// the error.
//
// See the AWS API reference guide for AWS Key Management Service's
// API operation UpdateKeyDescription for usage and error information.
//
// Returned Error Codes:
2017-02-08 14:02:41 +01:00
// * ErrCodeNotFoundException "NotFoundException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the specified entity or resource could not
// be found.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidArnException "InvalidArnException"
2016-10-17 23:21:08 +02:00
// The request was rejected because a specified ARN was not valid.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeDependencyTimeoutException "DependencyTimeoutException"
2016-10-17 23:21:08 +02:00
// The system timed out while trying to fulfill the request. The request can
// be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInternalException "InternalException"
2016-10-17 23:21:08 +02:00
// The request was rejected because an internal exception occurred. The request
// can be retried.
//
2017-02-08 14:02:41 +01:00
// * ErrCodeInvalidStateException "InvalidStateException"
2016-10-17 23:21:08 +02:00
// The request was rejected because the state of the specified resource is not
// valid for this request.
//
// For more information about how key state affects the use of a CMK, see How
// Key State Affects Use of a Customer Master Key (http://docs.aws.amazon.com/kms/latest/developerguide/key-state.html)
// in the AWS Key Management Service Developer Guide.
//
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/UpdateKeyDescription
2016-02-07 17:27:24 +01:00
func ( c * KMS ) UpdateKeyDescription ( input * UpdateKeyDescriptionInput ) ( * UpdateKeyDescriptionOutput , error ) {
req , out := c . UpdateKeyDescriptionRequest ( input )
err := req . Send ( )
return out , err
}
// Contains information about an alias.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/AliasListEntry
2016-02-07 17:27:24 +01:00
type AliasListEntry struct {
_ struct { } ` type:"structure" `
// String that contains the key ARN.
AliasArn * string ` min:"20" type:"string" `
// String that contains the alias.
AliasName * string ` min:"1" type:"string" `
2017-01-02 21:35:31 +01:00
// String that contains the key identifier referred to by the alias.
2016-02-07 17:27:24 +01:00
TargetKeyId * string ` min:"1" type:"string" `
}
// String returns the string representation
func ( s AliasListEntry ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s AliasListEntry ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetAliasArn sets the AliasArn field's value.
func ( s * AliasListEntry ) SetAliasArn ( v string ) * AliasListEntry {
s . AliasArn = & v
return s
}
// SetAliasName sets the AliasName field's value.
func ( s * AliasListEntry ) SetAliasName ( v string ) * AliasListEntry {
s . AliasName = & v
return s
}
// SetTargetKeyId sets the TargetKeyId field's value.
func ( s * AliasListEntry ) SetTargetKeyId ( v string ) * AliasListEntry {
s . TargetKeyId = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/CancelKeyDeletionRequest
2016-02-07 17:27:24 +01:00
type CancelKeyDeletionInput struct {
_ struct { } ` type:"structure" `
// The unique identifier for the customer master key (CMK) for which to cancel
// deletion.
//
// To specify this value, use the unique key ID or the Amazon Resource Name
2016-07-15 15:49:02 +02:00
// (ARN) of the CMK. Examples:
2016-02-07 17:27:24 +01:00
//
2016-11-19 19:41:01 +01:00
// * Unique key ID: 1234abcd-12ab-34cd-56ef-1234567890ab
2016-02-07 17:27:24 +01:00
//
2017-01-02 21:35:31 +01:00
// * Key ARN: arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// To obtain the unique key ID and key ARN for a given CMK, use ListKeys or
// DescribeKey.
2016-10-17 23:21:08 +02:00
//
// KeyId is a required field
2016-02-07 17:27:24 +01:00
KeyId * string ` min:"1" type:"string" required:"true" `
}
// String returns the string representation
func ( s CancelKeyDeletionInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s CancelKeyDeletionInput ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * CancelKeyDeletionInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "CancelKeyDeletionInput" }
if s . KeyId == nil {
invalidParams . Add ( request . NewErrParamRequired ( "KeyId" ) )
}
if s . KeyId != nil && len ( * s . KeyId ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "KeyId" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetKeyId sets the KeyId field's value.
func ( s * CancelKeyDeletionInput ) SetKeyId ( v string ) * CancelKeyDeletionInput {
s . KeyId = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/CancelKeyDeletionResponse
2016-02-07 17:27:24 +01:00
type CancelKeyDeletionOutput struct {
_ struct { } ` type:"structure" `
// The unique identifier of the master key for which deletion is canceled.
KeyId * string ` min:"1" type:"string" `
}
// String returns the string representation
func ( s CancelKeyDeletionOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s CancelKeyDeletionOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetKeyId sets the KeyId field's value.
func ( s * CancelKeyDeletionOutput ) SetKeyId ( v string ) * CancelKeyDeletionOutput {
s . KeyId = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/CreateAliasRequest
2016-02-07 17:27:24 +01:00
type CreateAliasInput struct {
_ struct { } ` type:"structure" `
// String that contains the display name. The name must start with the word
// "alias" followed by a forward slash (alias/). Aliases that begin with "alias/AWS"
// are reserved.
2016-10-17 23:21:08 +02:00
//
// AliasName is a required field
2016-02-07 17:27:24 +01:00
AliasName * string ` min:"1" type:"string" required:"true" `
// An identifier of the key for which you are creating the alias. This value
// cannot be another alias but can be a globally unique identifier or a fully
2016-07-15 15:49:02 +02:00
// specified ARN to a key.
//
2016-11-19 19:41:01 +01:00
// * Key ARN Example - arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012
2016-10-17 23:21:08 +02:00
//
// TargetKeyId is a required field
2016-02-07 17:27:24 +01:00
TargetKeyId * string ` min:"1" type:"string" required:"true" `
}
// String returns the string representation
func ( s CreateAliasInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s CreateAliasInput ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * CreateAliasInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "CreateAliasInput" }
if s . AliasName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "AliasName" ) )
}
if s . AliasName != nil && len ( * s . AliasName ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "AliasName" , 1 ) )
}
if s . TargetKeyId == nil {
invalidParams . Add ( request . NewErrParamRequired ( "TargetKeyId" ) )
}
if s . TargetKeyId != nil && len ( * s . TargetKeyId ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "TargetKeyId" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetAliasName sets the AliasName field's value.
func ( s * CreateAliasInput ) SetAliasName ( v string ) * CreateAliasInput {
s . AliasName = & v
return s
}
// SetTargetKeyId sets the TargetKeyId field's value.
func ( s * CreateAliasInput ) SetTargetKeyId ( v string ) * CreateAliasInput {
s . TargetKeyId = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/CreateAliasOutput
2016-02-07 17:27:24 +01:00
type CreateAliasOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s CreateAliasOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s CreateAliasOutput ) GoString ( ) string {
return s . String ( )
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/CreateGrantRequest
2016-02-07 17:27:24 +01:00
type CreateGrantInput struct {
_ struct { } ` type:"structure" `
// The conditions under which the operations permitted by the grant are allowed.
//
// You can use this value to allow the operations permitted by the grant only
// when a specified encryption context is present. For more information, see
2016-10-07 12:51:50 +02:00
// Encryption Context (http://docs.aws.amazon.com/kms/latest/developerguide/encryption-context.html)
2016-02-07 17:27:24 +01:00
// in the AWS Key Management Service Developer Guide.
Constraints * GrantConstraints ` type:"structure" `
// A list of grant tokens.
//
2016-07-15 15:49:02 +02:00
// For more information, see Grant Tokens (http://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#grant_token)
2016-02-07 17:27:24 +01:00
// in the AWS Key Management Service Developer Guide.
GrantTokens [ ] * string ` type:"list" `
// The principal that is given permission to perform the operations that the
// grant permits.
//
// To specify the principal, use the Amazon Resource Name (ARN) (http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html)
// of an AWS principal. Valid AWS principals include AWS accounts (root), IAM
// users, federated users, and assumed role users. For examples of the ARN syntax
// to use for specifying a principal, see AWS Identity and Access Management
// (IAM) (http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-iam)
// in the Example ARNs section of the AWS General Reference.
2016-10-17 23:21:08 +02:00
//
// GranteePrincipal is a required field
2016-02-07 17:27:24 +01:00
GranteePrincipal * string ` min:"1" type:"string" required:"true" `
// The unique identifier for the customer master key (CMK) that the grant applies
// to.
//
// To specify this value, use the globally unique key ID or the Amazon Resource
2016-07-15 15:49:02 +02:00
// Name (ARN) of the key. Examples:
//
2016-11-19 19:41:01 +01:00
// * Globally unique key ID: 12345678-1234-1234-1234-123456789012
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * Key ARN: arn:aws:kms:us-west-2:123456789012:key/12345678-1234-1234-1234-123456789012
2016-10-17 23:21:08 +02:00
//
// KeyId is a required field
2016-02-07 17:27:24 +01:00
KeyId * string ` min:"1" type:"string" required:"true" `
// A friendly name for identifying the grant. Use this value to prevent unintended
// creation of duplicate grants when retrying this request.
//
// When this value is absent, all CreateGrant requests result in a new grant
// with a unique GrantId even if all the supplied parameters are identical.
// This can result in unintended duplicates when you retry the CreateGrant request.
//
// When this value is present, you can retry a CreateGrant request with identical
// parameters; if the grant already exists, the original GrantId is returned
// without creating a new grant. Note that the returned grant token is unique
// with every CreateGrant request, even when a duplicate GrantId is returned.
// All grant tokens obtained in this way can be used interchangeably.
Name * string ` min:"1" type:"string" `
2017-01-02 21:35:31 +01:00
// A list of operations that the grant permits.
2016-02-07 17:27:24 +01:00
Operations [ ] * string ` type:"list" `
// The principal that is given permission to retire the grant by using RetireGrant
// operation.
//
// To specify the principal, use the Amazon Resource Name (ARN) (http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html)
// of an AWS principal. Valid AWS principals include AWS accounts (root), IAM
// users, federated users, and assumed role users. For examples of the ARN syntax
// to use for specifying a principal, see AWS Identity and Access Management
// (IAM) (http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-iam)
// in the Example ARNs section of the AWS General Reference.
RetiringPrincipal * string ` min:"1" type:"string" `
}
// String returns the string representation
func ( s CreateGrantInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s CreateGrantInput ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * CreateGrantInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "CreateGrantInput" }
if s . GranteePrincipal == nil {
invalidParams . Add ( request . NewErrParamRequired ( "GranteePrincipal" ) )
}
if s . GranteePrincipal != nil && len ( * s . GranteePrincipal ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "GranteePrincipal" , 1 ) )
}
if s . KeyId == nil {
invalidParams . Add ( request . NewErrParamRequired ( "KeyId" ) )
}
if s . KeyId != nil && len ( * s . KeyId ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "KeyId" , 1 ) )
}
if s . Name != nil && len ( * s . Name ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "Name" , 1 ) )
}
if s . RetiringPrincipal != nil && len ( * s . RetiringPrincipal ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "RetiringPrincipal" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetConstraints sets the Constraints field's value.
func ( s * CreateGrantInput ) SetConstraints ( v * GrantConstraints ) * CreateGrantInput {
s . Constraints = v
return s
}
// SetGrantTokens sets the GrantTokens field's value.
func ( s * CreateGrantInput ) SetGrantTokens ( v [ ] * string ) * CreateGrantInput {
s . GrantTokens = v
return s
}
// SetGranteePrincipal sets the GranteePrincipal field's value.
func ( s * CreateGrantInput ) SetGranteePrincipal ( v string ) * CreateGrantInput {
s . GranteePrincipal = & v
return s
}
// SetKeyId sets the KeyId field's value.
func ( s * CreateGrantInput ) SetKeyId ( v string ) * CreateGrantInput {
s . KeyId = & v
return s
}
// SetName sets the Name field's value.
func ( s * CreateGrantInput ) SetName ( v string ) * CreateGrantInput {
s . Name = & v
return s
}
// SetOperations sets the Operations field's value.
func ( s * CreateGrantInput ) SetOperations ( v [ ] * string ) * CreateGrantInput {
s . Operations = v
return s
}
// SetRetiringPrincipal sets the RetiringPrincipal field's value.
func ( s * CreateGrantInput ) SetRetiringPrincipal ( v string ) * CreateGrantInput {
s . RetiringPrincipal = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/CreateGrantResponse
2016-02-07 17:27:24 +01:00
type CreateGrantOutput struct {
_ struct { } ` type:"structure" `
// The unique identifier for the grant.
//
// You can use the GrantId in a subsequent RetireGrant or RevokeGrant operation.
GrantId * string ` min:"1" type:"string" `
// The grant token.
//
2016-07-15 15:49:02 +02:00
// For more information, see Grant Tokens (http://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#grant_token)
2016-02-07 17:27:24 +01:00
// in the AWS Key Management Service Developer Guide.
GrantToken * string ` min:"1" type:"string" `
}
// String returns the string representation
func ( s CreateGrantOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s CreateGrantOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetGrantId sets the GrantId field's value.
func ( s * CreateGrantOutput ) SetGrantId ( v string ) * CreateGrantOutput {
s . GrantId = & v
return s
}
// SetGrantToken sets the GrantToken field's value.
func ( s * CreateGrantOutput ) SetGrantToken ( v string ) * CreateGrantOutput {
s . GrantToken = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/CreateKeyRequest
2016-02-07 17:27:24 +01:00
type CreateKeyInput struct {
_ struct { } ` type:"structure" `
2016-07-15 15:49:02 +02:00
// A flag to indicate whether to bypass the key policy lockout safety check.
//
2016-11-19 19:41:01 +01:00
// Setting this value to true increases the likelihood that the CMK becomes
2016-07-15 15:49:02 +02:00
// unmanageable. Do not set this value to true indiscriminately.
//
// For more information, refer to the scenario in the Default Key Policy (http://docs.aws.amazon.com/kms/latest/developerguide/key-policies.html#key-policy-default-allow-root-enable-iam)
// section in the AWS Key Management Service Developer Guide.
//
2016-11-19 19:41:01 +01:00
// Use this parameter only when you include a policy in the request and you
2017-02-20 18:20:36 +01:00
// intend to prevent the principal that is making the request from making a
// subsequent PutKeyPolicy request on the CMK.
2016-07-15 15:49:02 +02:00
//
// The default value is false.
BypassPolicyLockoutSafetyCheck * bool ` type:"boolean" `
// A description of the CMK.
//
// Use a description that helps you decide whether the CMK is appropriate for
// a task.
2016-02-07 17:27:24 +01:00
Description * string ` type:"string" `
2016-07-15 15:49:02 +02:00
// The intended use of the CMK.
//
// You can use CMKs only for symmetric encryption and decryption.
2016-02-07 17:27:24 +01:00
KeyUsage * string ` type:"string" enum:"KeyUsageType" `
2016-08-11 19:01:51 +02:00
// The source of the CMK's key material.
//
// The default is AWS_KMS, which means AWS KMS creates the key material. When
// this parameter is set to EXTERNAL, the request creates a CMK without key
// material so that you can import key material from your existing key management
// infrastructure. For more information about importing key material into AWS
// KMS, see Importing Key Material (http://docs.aws.amazon.com/kms/latest/developerguide/importing-keys.html)
// in the AWS Key Management Service Developer Guide.
//
// The CMK's Origin is immutable and is set when the CMK is created.
Origin * string ` type:"string" enum:"OriginType" `
2016-07-15 15:49:02 +02:00
// The key policy to attach to the CMK.
//
2016-08-11 19:01:51 +02:00
// If you specify a policy and do not set BypassPolicyLockoutSafetyCheck to
// true, the policy must meet the following criteria:
2016-07-15 15:49:02 +02:00
//
2017-02-20 18:20:36 +01:00
// * It must allow the principal that is making the CreateKey request to
// make a subsequent PutKeyPolicy request on the CMK. This reduces the likelihood
// that the CMK becomes unmanageable. For more information, refer to the
// scenario in the Default Key Policy (http://docs.aws.amazon.com/kms/latest/developerguide/key-policies.html#key-policy-default-allow-root-enable-iam)
2016-11-19 19:41:01 +01:00
// section in the AWS Key Management Service Developer Guide.
//
2017-02-20 18:20:36 +01:00
// * The principals that are specified in the key policy must exist and be
// visible to AWS KMS. When you create a new AWS principal (for example,
// an IAM user or role), you might need to enforce a delay before specifying
// the new principal in a key policy because the new principal might not
// immediately be visible to AWS KMS. For more information, see Changes that
// I make are not always immediately visible (http://docs.aws.amazon.com/IAM/latest/UserGuide/troubleshoot_general.html#troubleshoot_general_eventual-consistency)
2016-11-19 19:41:01 +01:00
// in the IAM User Guide.
//
// If you do not specify a policy, AWS KMS attaches a default key policy to
// the CMK. For more information, see Default Key Policy (http://docs.aws.amazon.com/kms/latest/developerguide/key-policies.html#key-policy-default)
2016-07-15 15:49:02 +02:00
// in the AWS Key Management Service Developer Guide.
//
// The policy size limit is 32 KiB (32768 bytes).
2016-02-07 17:27:24 +01:00
Policy * string ` min:"1" type:"string" `
2017-02-20 18:20:36 +01:00
// One or more tags. Each tag consists of a tag key and a tag value. Tag keys
// and tag values are both required, but tag values can be empty (null) strings.
//
// Use this parameter to tag the CMK when it is created. Alternately, you can
// omit this parameter and instead tag the CMK after it is created using TagResource.
Tags [ ] * Tag ` type:"list" `
2016-02-07 17:27:24 +01:00
}
// String returns the string representation
func ( s CreateKeyInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s CreateKeyInput ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * CreateKeyInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "CreateKeyInput" }
if s . Policy != nil && len ( * s . Policy ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "Policy" , 1 ) )
}
2017-02-20 18:20:36 +01:00
if s . Tags != nil {
for i , v := range s . Tags {
if v == nil {
continue
}
if err := v . Validate ( ) ; err != nil {
invalidParams . AddNested ( fmt . Sprintf ( "%s[%v]" , "Tags" , i ) , err . ( request . ErrInvalidParams ) )
}
}
}
2016-05-05 03:06:27 +02:00
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetBypassPolicyLockoutSafetyCheck sets the BypassPolicyLockoutSafetyCheck field's value.
func ( s * CreateKeyInput ) SetBypassPolicyLockoutSafetyCheck ( v bool ) * CreateKeyInput {
s . BypassPolicyLockoutSafetyCheck = & v
return s
}
// SetDescription sets the Description field's value.
func ( s * CreateKeyInput ) SetDescription ( v string ) * CreateKeyInput {
s . Description = & v
return s
}
// SetKeyUsage sets the KeyUsage field's value.
func ( s * CreateKeyInput ) SetKeyUsage ( v string ) * CreateKeyInput {
s . KeyUsage = & v
return s
}
// SetOrigin sets the Origin field's value.
func ( s * CreateKeyInput ) SetOrigin ( v string ) * CreateKeyInput {
s . Origin = & v
return s
}
// SetPolicy sets the Policy field's value.
func ( s * CreateKeyInput ) SetPolicy ( v string ) * CreateKeyInput {
s . Policy = & v
return s
}
2017-02-20 18:20:36 +01:00
// SetTags sets the Tags field's value.
func ( s * CreateKeyInput ) SetTags ( v [ ] * Tag ) * CreateKeyInput {
s . Tags = v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/CreateKeyResponse
2016-02-07 17:27:24 +01:00
type CreateKeyOutput struct {
_ struct { } ` type:"structure" `
2016-07-15 15:49:02 +02:00
// Metadata associated with the CMK.
2016-02-07 17:27:24 +01:00
KeyMetadata * KeyMetadata ` type:"structure" `
}
// String returns the string representation
func ( s CreateKeyOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s CreateKeyOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetKeyMetadata sets the KeyMetadata field's value.
func ( s * CreateKeyOutput ) SetKeyMetadata ( v * KeyMetadata ) * CreateKeyOutput {
s . KeyMetadata = v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/DecryptRequest
2016-02-07 17:27:24 +01:00
type DecryptInput struct {
_ struct { } ` type:"structure" `
// Ciphertext to be decrypted. The blob includes metadata.
2016-03-18 20:35:09 +01:00
//
// CiphertextBlob is automatically base64 encoded/decoded by the SDK.
2016-10-17 23:21:08 +02:00
//
// CiphertextBlob is a required field
2016-02-07 17:27:24 +01:00
CiphertextBlob [ ] byte ` min:"1" type:"blob" required:"true" `
// The encryption context. If this was specified in the Encrypt function, it
// must be specified here or the decryption operation will fail. For more information,
2016-10-07 12:51:50 +02:00
// see Encryption Context (http://docs.aws.amazon.com/kms/latest/developerguide/encryption-context.html).
2016-02-07 17:27:24 +01:00
EncryptionContext map [ string ] * string ` type:"map" `
// A list of grant tokens.
//
2016-07-15 15:49:02 +02:00
// For more information, see Grant Tokens (http://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#grant_token)
2016-02-07 17:27:24 +01:00
// in the AWS Key Management Service Developer Guide.
GrantTokens [ ] * string ` type:"list" `
}
// String returns the string representation
func ( s DecryptInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DecryptInput ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * DecryptInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "DecryptInput" }
if s . CiphertextBlob == nil {
invalidParams . Add ( request . NewErrParamRequired ( "CiphertextBlob" ) )
}
if s . CiphertextBlob != nil && len ( s . CiphertextBlob ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "CiphertextBlob" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetCiphertextBlob sets the CiphertextBlob field's value.
func ( s * DecryptInput ) SetCiphertextBlob ( v [ ] byte ) * DecryptInput {
s . CiphertextBlob = v
return s
}
// SetEncryptionContext sets the EncryptionContext field's value.
func ( s * DecryptInput ) SetEncryptionContext ( v map [ string ] * string ) * DecryptInput {
s . EncryptionContext = v
return s
}
// SetGrantTokens sets the GrantTokens field's value.
func ( s * DecryptInput ) SetGrantTokens ( v [ ] * string ) * DecryptInput {
s . GrantTokens = v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/DecryptResponse
2016-02-07 17:27:24 +01:00
type DecryptOutput struct {
_ struct { } ` type:"structure" `
// ARN of the key used to perform the decryption. This value is returned if
// no errors are encountered during the operation.
KeyId * string ` min:"1" type:"string" `
// Decrypted plaintext data. This value may not be returned if the customer
// master key is not available or if you didn't have permission to use it.
2016-03-18 20:35:09 +01:00
//
// Plaintext is automatically base64 encoded/decoded by the SDK.
2016-02-07 17:27:24 +01:00
Plaintext [ ] byte ` min:"1" type:"blob" `
}
// String returns the string representation
func ( s DecryptOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DecryptOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetKeyId sets the KeyId field's value.
func ( s * DecryptOutput ) SetKeyId ( v string ) * DecryptOutput {
s . KeyId = & v
return s
}
// SetPlaintext sets the Plaintext field's value.
func ( s * DecryptOutput ) SetPlaintext ( v [ ] byte ) * DecryptOutput {
s . Plaintext = v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/DeleteAliasRequest
2016-02-07 17:27:24 +01:00
type DeleteAliasInput struct {
_ struct { } ` type:"structure" `
// The alias to be deleted. The name must start with the word "alias" followed
// by a forward slash (alias/). Aliases that begin with "alias/AWS" are reserved.
2016-10-17 23:21:08 +02:00
//
// AliasName is a required field
2016-02-07 17:27:24 +01:00
AliasName * string ` min:"1" type:"string" required:"true" `
}
// String returns the string representation
func ( s DeleteAliasInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DeleteAliasInput ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * DeleteAliasInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "DeleteAliasInput" }
if s . AliasName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "AliasName" ) )
}
if s . AliasName != nil && len ( * s . AliasName ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "AliasName" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetAliasName sets the AliasName field's value.
func ( s * DeleteAliasInput ) SetAliasName ( v string ) * DeleteAliasInput {
s . AliasName = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/DeleteAliasOutput
2016-02-07 17:27:24 +01:00
type DeleteAliasOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s DeleteAliasOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DeleteAliasOutput ) GoString ( ) string {
return s . String ( )
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/DeleteImportedKeyMaterialRequest
2016-08-11 19:01:51 +02:00
type DeleteImportedKeyMaterialInput struct {
_ struct { } ` type:"structure" `
// The identifier of the CMK whose key material to delete. The CMK's Origin
// must be EXTERNAL.
//
// A valid identifier is the unique key ID or the Amazon Resource Name (ARN)
// of the CMK. Examples:
//
2016-11-19 19:41:01 +01:00
// * Unique key ID: 1234abcd-12ab-34cd-56ef-1234567890ab
2016-08-11 19:01:51 +02:00
//
2017-01-02 21:35:31 +01:00
// * Key ARN: arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab
2016-10-17 23:21:08 +02:00
//
// KeyId is a required field
2016-08-11 19:01:51 +02:00
KeyId * string ` min:"1" type:"string" required:"true" `
}
// String returns the string representation
func ( s DeleteImportedKeyMaterialInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DeleteImportedKeyMaterialInput ) GoString ( ) string {
return s . String ( )
}
// Validate inspects the fields of the type to determine if they are valid.
func ( s * DeleteImportedKeyMaterialInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "DeleteImportedKeyMaterialInput" }
if s . KeyId == nil {
invalidParams . Add ( request . NewErrParamRequired ( "KeyId" ) )
}
if s . KeyId != nil && len ( * s . KeyId ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "KeyId" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetKeyId sets the KeyId field's value.
func ( s * DeleteImportedKeyMaterialInput ) SetKeyId ( v string ) * DeleteImportedKeyMaterialInput {
s . KeyId = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/DeleteImportedKeyMaterialOutput
2016-08-11 19:01:51 +02:00
type DeleteImportedKeyMaterialOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s DeleteImportedKeyMaterialOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DeleteImportedKeyMaterialOutput ) GoString ( ) string {
return s . String ( )
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/DescribeKeyRequest
2016-02-07 17:27:24 +01:00
type DescribeKeyInput struct {
_ struct { } ` type:"structure" `
// A list of grant tokens.
//
2016-07-15 15:49:02 +02:00
// For more information, see Grant Tokens (http://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#grant_token)
2016-02-07 17:27:24 +01:00
// in the AWS Key Management Service Developer Guide.
GrantTokens [ ] * string ` type:"list" `
// A unique identifier for the customer master key. This value can be a globally
// unique identifier, a fully specified ARN to either an alias or a key, or
2016-07-15 15:49:02 +02:00
// an alias name prefixed by "alias/".
//
2016-11-19 19:41:01 +01:00
// * Key ARN Example - arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * Alias ARN Example - arn:aws:kms:us-east-1:123456789012:alias/MyAliasName
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * Alias Name Example - alias/MyAliasName
2016-10-17 23:21:08 +02:00
//
// KeyId is a required field
2016-02-07 17:27:24 +01:00
KeyId * string ` min:"1" type:"string" required:"true" `
}
// String returns the string representation
func ( s DescribeKeyInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DescribeKeyInput ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * DescribeKeyInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "DescribeKeyInput" }
if s . KeyId == nil {
invalidParams . Add ( request . NewErrParamRequired ( "KeyId" ) )
}
if s . KeyId != nil && len ( * s . KeyId ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "KeyId" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetGrantTokens sets the GrantTokens field's value.
func ( s * DescribeKeyInput ) SetGrantTokens ( v [ ] * string ) * DescribeKeyInput {
s . GrantTokens = v
return s
}
// SetKeyId sets the KeyId field's value.
func ( s * DescribeKeyInput ) SetKeyId ( v string ) * DescribeKeyInput {
s . KeyId = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/DescribeKeyResponse
2016-02-07 17:27:24 +01:00
type DescribeKeyOutput struct {
_ struct { } ` type:"structure" `
// Metadata associated with the key.
KeyMetadata * KeyMetadata ` type:"structure" `
}
// String returns the string representation
func ( s DescribeKeyOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DescribeKeyOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetKeyMetadata sets the KeyMetadata field's value.
func ( s * DescribeKeyOutput ) SetKeyMetadata ( v * KeyMetadata ) * DescribeKeyOutput {
s . KeyMetadata = v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/DisableKeyRequest
2016-02-07 17:27:24 +01:00
type DisableKeyInput struct {
_ struct { } ` type:"structure" `
2016-07-15 15:49:02 +02:00
// A unique identifier for the CMK.
//
// Use the CMK's unique identifier or its Amazon Resource Name (ARN). For example:
//
2016-11-19 19:41:01 +01:00
// * Unique ID: 1234abcd-12ab-34cd-56ef-1234567890ab
2016-07-15 15:49:02 +02:00
//
2017-01-02 21:35:31 +01:00
// * ARN: arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab
2016-10-17 23:21:08 +02:00
//
// KeyId is a required field
2016-02-07 17:27:24 +01:00
KeyId * string ` min:"1" type:"string" required:"true" `
}
// String returns the string representation
func ( s DisableKeyInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DisableKeyInput ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * DisableKeyInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "DisableKeyInput" }
if s . KeyId == nil {
invalidParams . Add ( request . NewErrParamRequired ( "KeyId" ) )
}
if s . KeyId != nil && len ( * s . KeyId ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "KeyId" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetKeyId sets the KeyId field's value.
func ( s * DisableKeyInput ) SetKeyId ( v string ) * DisableKeyInput {
s . KeyId = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/DisableKeyOutput
2016-02-07 17:27:24 +01:00
type DisableKeyOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s DisableKeyOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DisableKeyOutput ) GoString ( ) string {
return s . String ( )
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/DisableKeyRotationRequest
2016-02-07 17:27:24 +01:00
type DisableKeyRotationInput struct {
_ struct { } ` type:"structure" `
// A unique identifier for the customer master key. This value can be a globally
2016-07-15 15:49:02 +02:00
// unique identifier or the fully specified ARN to a key.
//
2016-11-19 19:41:01 +01:00
// * Key ARN Example - arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012
2016-10-17 23:21:08 +02:00
//
// KeyId is a required field
2016-02-07 17:27:24 +01:00
KeyId * string ` min:"1" type:"string" required:"true" `
}
// String returns the string representation
func ( s DisableKeyRotationInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DisableKeyRotationInput ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * DisableKeyRotationInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "DisableKeyRotationInput" }
if s . KeyId == nil {
invalidParams . Add ( request . NewErrParamRequired ( "KeyId" ) )
}
if s . KeyId != nil && len ( * s . KeyId ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "KeyId" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetKeyId sets the KeyId field's value.
func ( s * DisableKeyRotationInput ) SetKeyId ( v string ) * DisableKeyRotationInput {
s . KeyId = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/DisableKeyRotationOutput
2016-02-07 17:27:24 +01:00
type DisableKeyRotationOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s DisableKeyRotationOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s DisableKeyRotationOutput ) GoString ( ) string {
return s . String ( )
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/EnableKeyRequest
2016-02-07 17:27:24 +01:00
type EnableKeyInput struct {
_ struct { } ` type:"structure" `
// A unique identifier for the customer master key. This value can be a globally
2016-07-15 15:49:02 +02:00
// unique identifier or the fully specified ARN to a key.
//
2016-11-19 19:41:01 +01:00
// * Key ARN Example - arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012
2016-10-17 23:21:08 +02:00
//
// KeyId is a required field
2016-02-07 17:27:24 +01:00
KeyId * string ` min:"1" type:"string" required:"true" `
}
// String returns the string representation
func ( s EnableKeyInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s EnableKeyInput ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * EnableKeyInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "EnableKeyInput" }
if s . KeyId == nil {
invalidParams . Add ( request . NewErrParamRequired ( "KeyId" ) )
}
if s . KeyId != nil && len ( * s . KeyId ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "KeyId" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetKeyId sets the KeyId field's value.
func ( s * EnableKeyInput ) SetKeyId ( v string ) * EnableKeyInput {
s . KeyId = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/EnableKeyOutput
2016-02-07 17:27:24 +01:00
type EnableKeyOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s EnableKeyOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s EnableKeyOutput ) GoString ( ) string {
return s . String ( )
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/EnableKeyRotationRequest
2016-02-07 17:27:24 +01:00
type EnableKeyRotationInput struct {
_ struct { } ` type:"structure" `
// A unique identifier for the customer master key. This value can be a globally
2016-07-15 15:49:02 +02:00
// unique identifier or the fully specified ARN to a key.
//
2016-11-19 19:41:01 +01:00
// * Key ARN Example - arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012
2016-10-17 23:21:08 +02:00
//
// KeyId is a required field
2016-02-07 17:27:24 +01:00
KeyId * string ` min:"1" type:"string" required:"true" `
}
// String returns the string representation
func ( s EnableKeyRotationInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s EnableKeyRotationInput ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * EnableKeyRotationInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "EnableKeyRotationInput" }
if s . KeyId == nil {
invalidParams . Add ( request . NewErrParamRequired ( "KeyId" ) )
}
if s . KeyId != nil && len ( * s . KeyId ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "KeyId" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetKeyId sets the KeyId field's value.
func ( s * EnableKeyRotationInput ) SetKeyId ( v string ) * EnableKeyRotationInput {
s . KeyId = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/EnableKeyRotationOutput
2016-02-07 17:27:24 +01:00
type EnableKeyRotationOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s EnableKeyRotationOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s EnableKeyRotationOutput ) GoString ( ) string {
return s . String ( )
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/EncryptRequest
2016-02-07 17:27:24 +01:00
type EncryptInput struct {
_ struct { } ` type:"structure" `
2016-10-07 12:51:50 +02:00
// Name-value pair that specifies the encryption context to be used for authenticated
2016-02-07 17:27:24 +01:00
// encryption. If used here, the same value must be supplied to the Decrypt
// API or decryption will fail. For more information, see Encryption Context
2016-10-07 12:51:50 +02:00
// (http://docs.aws.amazon.com/kms/latest/developerguide/encryption-context.html).
2016-02-07 17:27:24 +01:00
EncryptionContext map [ string ] * string ` type:"map" `
// A list of grant tokens.
//
2016-07-15 15:49:02 +02:00
// For more information, see Grant Tokens (http://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#grant_token)
2016-02-07 17:27:24 +01:00
// in the AWS Key Management Service Developer Guide.
GrantTokens [ ] * string ` type:"list" `
// A unique identifier for the customer master key. This value can be a globally
// unique identifier, a fully specified ARN to either an alias or a key, or
2016-07-15 15:49:02 +02:00
// an alias name prefixed by "alias/".
//
2016-11-19 19:41:01 +01:00
// * Key ARN Example - arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * Alias ARN Example - arn:aws:kms:us-east-1:123456789012:alias/MyAliasName
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * Alias Name Example - alias/MyAliasName
2016-10-17 23:21:08 +02:00
//
// KeyId is a required field
2016-02-07 17:27:24 +01:00
KeyId * string ` min:"1" type:"string" required:"true" `
// Data to be encrypted.
2016-03-18 20:35:09 +01:00
//
// Plaintext is automatically base64 encoded/decoded by the SDK.
2016-10-17 23:21:08 +02:00
//
// Plaintext is a required field
2016-02-07 17:27:24 +01:00
Plaintext [ ] byte ` min:"1" type:"blob" required:"true" `
}
// String returns the string representation
func ( s EncryptInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s EncryptInput ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * EncryptInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "EncryptInput" }
if s . KeyId == nil {
invalidParams . Add ( request . NewErrParamRequired ( "KeyId" ) )
}
if s . KeyId != nil && len ( * s . KeyId ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "KeyId" , 1 ) )
}
if s . Plaintext == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Plaintext" ) )
}
if s . Plaintext != nil && len ( s . Plaintext ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "Plaintext" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetEncryptionContext sets the EncryptionContext field's value.
func ( s * EncryptInput ) SetEncryptionContext ( v map [ string ] * string ) * EncryptInput {
s . EncryptionContext = v
return s
}
// SetGrantTokens sets the GrantTokens field's value.
func ( s * EncryptInput ) SetGrantTokens ( v [ ] * string ) * EncryptInput {
s . GrantTokens = v
return s
}
// SetKeyId sets the KeyId field's value.
func ( s * EncryptInput ) SetKeyId ( v string ) * EncryptInput {
s . KeyId = & v
return s
}
// SetPlaintext sets the Plaintext field's value.
func ( s * EncryptInput ) SetPlaintext ( v [ ] byte ) * EncryptInput {
s . Plaintext = v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/EncryptResponse
2016-02-07 17:27:24 +01:00
type EncryptOutput struct {
_ struct { } ` type:"structure" `
// The encrypted plaintext. If you are using the CLI, the value is Base64 encoded.
// Otherwise, it is not encoded.
2016-03-18 20:35:09 +01:00
//
// CiphertextBlob is automatically base64 encoded/decoded by the SDK.
2016-02-07 17:27:24 +01:00
CiphertextBlob [ ] byte ` min:"1" type:"blob" `
// The ID of the key used during encryption.
KeyId * string ` min:"1" type:"string" `
}
// String returns the string representation
func ( s EncryptOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s EncryptOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetCiphertextBlob sets the CiphertextBlob field's value.
func ( s * EncryptOutput ) SetCiphertextBlob ( v [ ] byte ) * EncryptOutput {
s . CiphertextBlob = v
return s
}
// SetKeyId sets the KeyId field's value.
func ( s * EncryptOutput ) SetKeyId ( v string ) * EncryptOutput {
s . KeyId = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/GenerateDataKeyRequest
2016-02-07 17:27:24 +01:00
type GenerateDataKeyInput struct {
_ struct { } ` type:"structure" `
2016-10-07 12:51:50 +02:00
// A set of key-value pairs that represents additional authenticated data.
//
// For more information, see Encryption Context (http://docs.aws.amazon.com/kms/latest/developerguide/encryption-context.html)
// in the AWS Key Management Service Developer Guide.
2016-02-07 17:27:24 +01:00
EncryptionContext map [ string ] * string ` type:"map" `
// A list of grant tokens.
//
2016-07-15 15:49:02 +02:00
// For more information, see Grant Tokens (http://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#grant_token)
2016-02-07 17:27:24 +01:00
// in the AWS Key Management Service Developer Guide.
GrantTokens [ ] * string ` type:"list" `
2016-10-07 12:51:50 +02:00
// The identifier of the CMK under which to generate and encrypt the data encryption
// key.
2016-07-15 15:49:02 +02:00
//
2016-10-07 12:51:50 +02:00
// A valid identifier is the unique key ID or the Amazon Resource Name (ARN)
2017-01-02 21:35:31 +01:00
// of the CMK, or the alias name or ARN of an alias that refers to the CMK.
2016-10-07 12:51:50 +02:00
// Examples:
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * Unique key ID: 1234abcd-12ab-34cd-56ef-1234567890ab
2016-07-15 15:49:02 +02:00
//
2017-01-02 21:35:31 +01:00
// * CMK ARN: arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * Alias name: alias/ExampleAlias
2016-10-07 12:51:50 +02:00
//
2017-01-02 21:35:31 +01:00
// * Alias ARN: arn:aws:kms:us-east-2:111122223333:alias/ExampleAlias
2016-10-17 23:21:08 +02:00
//
// KeyId is a required field
2016-02-07 17:27:24 +01:00
KeyId * string ` min:"1" type:"string" required:"true" `
2016-10-07 12:51:50 +02:00
// The length of the data encryption key. Use AES_128 to generate a 128-bit
// symmetric key, or AES_256 to generate a 256-bit symmetric key.
2016-02-07 17:27:24 +01:00
KeySpec * string ` type:"string" enum:"DataKeySpec" `
2016-10-07 12:51:50 +02:00
// The length of the data encryption key in bytes. For example, use the value
// 64 to generate a 512-bit data key (64 bytes is 512 bits). For common key
// lengths (128-bit and 256-bit symmetric keys), we recommend that you use the
// KeySpec field instead of this one.
2016-02-07 17:27:24 +01:00
NumberOfBytes * int64 ` min:"1" type:"integer" `
}
// String returns the string representation
func ( s GenerateDataKeyInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s GenerateDataKeyInput ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * GenerateDataKeyInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "GenerateDataKeyInput" }
if s . KeyId == nil {
invalidParams . Add ( request . NewErrParamRequired ( "KeyId" ) )
}
if s . KeyId != nil && len ( * s . KeyId ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "KeyId" , 1 ) )
}
if s . NumberOfBytes != nil && * s . NumberOfBytes < 1 {
invalidParams . Add ( request . NewErrParamMinValue ( "NumberOfBytes" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetEncryptionContext sets the EncryptionContext field's value.
func ( s * GenerateDataKeyInput ) SetEncryptionContext ( v map [ string ] * string ) * GenerateDataKeyInput {
s . EncryptionContext = v
return s
}
// SetGrantTokens sets the GrantTokens field's value.
func ( s * GenerateDataKeyInput ) SetGrantTokens ( v [ ] * string ) * GenerateDataKeyInput {
s . GrantTokens = v
return s
}
// SetKeyId sets the KeyId field's value.
func ( s * GenerateDataKeyInput ) SetKeyId ( v string ) * GenerateDataKeyInput {
s . KeyId = & v
return s
}
// SetKeySpec sets the KeySpec field's value.
func ( s * GenerateDataKeyInput ) SetKeySpec ( v string ) * GenerateDataKeyInput {
s . KeySpec = & v
return s
}
// SetNumberOfBytes sets the NumberOfBytes field's value.
func ( s * GenerateDataKeyInput ) SetNumberOfBytes ( v int64 ) * GenerateDataKeyInput {
s . NumberOfBytes = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/GenerateDataKeyResponse
2016-02-07 17:27:24 +01:00
type GenerateDataKeyOutput struct {
_ struct { } ` type:"structure" `
2016-10-07 12:51:50 +02:00
// The encrypted data encryption key.
2016-03-18 20:35:09 +01:00
//
// CiphertextBlob is automatically base64 encoded/decoded by the SDK.
2016-02-07 17:27:24 +01:00
CiphertextBlob [ ] byte ` min:"1" type:"blob" `
2016-10-07 12:51:50 +02:00
// The identifier of the CMK under which the data encryption key was generated
// and encrypted.
2016-02-07 17:27:24 +01:00
KeyId * string ` min:"1" type:"string" `
2016-10-07 12:51:50 +02:00
// The data encryption key. Use this data key for local encryption and decryption,
// then remove it from memory as soon as possible.
2016-03-18 20:35:09 +01:00
//
// Plaintext is automatically base64 encoded/decoded by the SDK.
2016-02-07 17:27:24 +01:00
Plaintext [ ] byte ` min:"1" type:"blob" `
}
// String returns the string representation
func ( s GenerateDataKeyOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s GenerateDataKeyOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetCiphertextBlob sets the CiphertextBlob field's value.
func ( s * GenerateDataKeyOutput ) SetCiphertextBlob ( v [ ] byte ) * GenerateDataKeyOutput {
s . CiphertextBlob = v
return s
}
// SetKeyId sets the KeyId field's value.
func ( s * GenerateDataKeyOutput ) SetKeyId ( v string ) * GenerateDataKeyOutput {
s . KeyId = & v
return s
}
// SetPlaintext sets the Plaintext field's value.
func ( s * GenerateDataKeyOutput ) SetPlaintext ( v [ ] byte ) * GenerateDataKeyOutput {
s . Plaintext = v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/GenerateDataKeyWithoutPlaintextRequest
2016-02-07 17:27:24 +01:00
type GenerateDataKeyWithoutPlaintextInput struct {
_ struct { } ` type:"structure" `
2016-10-07 12:51:50 +02:00
// A set of key-value pairs that represents additional authenticated data.
//
// For more information, see Encryption Context (http://docs.aws.amazon.com/kms/latest/developerguide/encryption-context.html)
// in the AWS Key Management Service Developer Guide.
2016-02-07 17:27:24 +01:00
EncryptionContext map [ string ] * string ` type:"map" `
// A list of grant tokens.
//
2016-07-15 15:49:02 +02:00
// For more information, see Grant Tokens (http://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#grant_token)
2016-02-07 17:27:24 +01:00
// in the AWS Key Management Service Developer Guide.
GrantTokens [ ] * string ` type:"list" `
2016-10-07 12:51:50 +02:00
// The identifier of the CMK under which to generate and encrypt the data encryption
// key.
2016-07-15 15:49:02 +02:00
//
2016-10-07 12:51:50 +02:00
// A valid identifier is the unique key ID or the Amazon Resource Name (ARN)
2017-01-02 21:35:31 +01:00
// of the CMK, or the alias name or ARN of an alias that refers to the CMK.
2016-10-07 12:51:50 +02:00
// Examples:
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * Unique key ID: 1234abcd-12ab-34cd-56ef-1234567890ab
2016-07-15 15:49:02 +02:00
//
2017-01-02 21:35:31 +01:00
// * CMK ARN: arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * Alias name: alias/ExampleAlias
2016-10-07 12:51:50 +02:00
//
2017-01-02 21:35:31 +01:00
// * Alias ARN: arn:aws:kms:us-east-2:111122223333:alias/ExampleAlias
2016-10-17 23:21:08 +02:00
//
// KeyId is a required field
2016-02-07 17:27:24 +01:00
KeyId * string ` min:"1" type:"string" required:"true" `
2016-10-07 12:51:50 +02:00
// The length of the data encryption key. Use AES_128 to generate a 128-bit
// symmetric key, or AES_256 to generate a 256-bit symmetric key.
2016-02-07 17:27:24 +01:00
KeySpec * string ` type:"string" enum:"DataKeySpec" `
2016-10-07 12:51:50 +02:00
// The length of the data encryption key in bytes. For example, use the value
// 64 to generate a 512-bit data key (64 bytes is 512 bits). For common key
// lengths (128-bit and 256-bit symmetric keys), we recommend that you use the
// KeySpec field instead of this one.
2016-02-07 17:27:24 +01:00
NumberOfBytes * int64 ` min:"1" type:"integer" `
}
// String returns the string representation
func ( s GenerateDataKeyWithoutPlaintextInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s GenerateDataKeyWithoutPlaintextInput ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * GenerateDataKeyWithoutPlaintextInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "GenerateDataKeyWithoutPlaintextInput" }
if s . KeyId == nil {
invalidParams . Add ( request . NewErrParamRequired ( "KeyId" ) )
}
if s . KeyId != nil && len ( * s . KeyId ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "KeyId" , 1 ) )
}
if s . NumberOfBytes != nil && * s . NumberOfBytes < 1 {
invalidParams . Add ( request . NewErrParamMinValue ( "NumberOfBytes" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetEncryptionContext sets the EncryptionContext field's value.
func ( s * GenerateDataKeyWithoutPlaintextInput ) SetEncryptionContext ( v map [ string ] * string ) * GenerateDataKeyWithoutPlaintextInput {
s . EncryptionContext = v
return s
}
// SetGrantTokens sets the GrantTokens field's value.
func ( s * GenerateDataKeyWithoutPlaintextInput ) SetGrantTokens ( v [ ] * string ) * GenerateDataKeyWithoutPlaintextInput {
s . GrantTokens = v
return s
}
// SetKeyId sets the KeyId field's value.
func ( s * GenerateDataKeyWithoutPlaintextInput ) SetKeyId ( v string ) * GenerateDataKeyWithoutPlaintextInput {
s . KeyId = & v
return s
}
// SetKeySpec sets the KeySpec field's value.
func ( s * GenerateDataKeyWithoutPlaintextInput ) SetKeySpec ( v string ) * GenerateDataKeyWithoutPlaintextInput {
s . KeySpec = & v
return s
}
// SetNumberOfBytes sets the NumberOfBytes field's value.
func ( s * GenerateDataKeyWithoutPlaintextInput ) SetNumberOfBytes ( v int64 ) * GenerateDataKeyWithoutPlaintextInput {
s . NumberOfBytes = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/GenerateDataKeyWithoutPlaintextResponse
2016-02-07 17:27:24 +01:00
type GenerateDataKeyWithoutPlaintextOutput struct {
_ struct { } ` type:"structure" `
2016-10-07 12:51:50 +02:00
// The encrypted data encryption key.
2016-03-18 20:35:09 +01:00
//
// CiphertextBlob is automatically base64 encoded/decoded by the SDK.
2016-02-07 17:27:24 +01:00
CiphertextBlob [ ] byte ` min:"1" type:"blob" `
2016-10-07 12:51:50 +02:00
// The identifier of the CMK under which the data encryption key was generated
// and encrypted.
2016-02-07 17:27:24 +01:00
KeyId * string ` min:"1" type:"string" `
}
// String returns the string representation
func ( s GenerateDataKeyWithoutPlaintextOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s GenerateDataKeyWithoutPlaintextOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetCiphertextBlob sets the CiphertextBlob field's value.
func ( s * GenerateDataKeyWithoutPlaintextOutput ) SetCiphertextBlob ( v [ ] byte ) * GenerateDataKeyWithoutPlaintextOutput {
s . CiphertextBlob = v
return s
}
// SetKeyId sets the KeyId field's value.
func ( s * GenerateDataKeyWithoutPlaintextOutput ) SetKeyId ( v string ) * GenerateDataKeyWithoutPlaintextOutput {
s . KeyId = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/GenerateRandomRequest
2016-02-07 17:27:24 +01:00
type GenerateRandomInput struct {
_ struct { } ` type:"structure" `
2016-10-07 12:51:50 +02:00
// The length of the byte string.
2016-02-07 17:27:24 +01:00
NumberOfBytes * int64 ` min:"1" type:"integer" `
}
// String returns the string representation
func ( s GenerateRandomInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s GenerateRandomInput ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * GenerateRandomInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "GenerateRandomInput" }
if s . NumberOfBytes != nil && * s . NumberOfBytes < 1 {
invalidParams . Add ( request . NewErrParamMinValue ( "NumberOfBytes" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetNumberOfBytes sets the NumberOfBytes field's value.
func ( s * GenerateRandomInput ) SetNumberOfBytes ( v int64 ) * GenerateRandomInput {
s . NumberOfBytes = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/GenerateRandomResponse
2016-02-07 17:27:24 +01:00
type GenerateRandomOutput struct {
_ struct { } ` type:"structure" `
2016-10-07 12:51:50 +02:00
// The unpredictable byte string.
2016-03-18 20:35:09 +01:00
//
// Plaintext is automatically base64 encoded/decoded by the SDK.
2016-02-07 17:27:24 +01:00
Plaintext [ ] byte ` min:"1" type:"blob" `
}
// String returns the string representation
func ( s GenerateRandomOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s GenerateRandomOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetPlaintext sets the Plaintext field's value.
func ( s * GenerateRandomOutput ) SetPlaintext ( v [ ] byte ) * GenerateRandomOutput {
s . Plaintext = v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/GetKeyPolicyRequest
2016-02-07 17:27:24 +01:00
type GetKeyPolicyInput struct {
_ struct { } ` type:"structure" `
// A unique identifier for the customer master key. This value can be a globally
2016-07-15 15:49:02 +02:00
// unique identifier or the fully specified ARN to a key.
//
2016-11-19 19:41:01 +01:00
// * Key ARN Example - arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012
2016-10-17 23:21:08 +02:00
//
// KeyId is a required field
2016-02-07 17:27:24 +01:00
KeyId * string ` min:"1" type:"string" required:"true" `
// String that contains the name of the policy. Currently, this must be "default".
// Policy names can be discovered by calling ListKeyPolicies.
2016-10-17 23:21:08 +02:00
//
// PolicyName is a required field
2016-02-07 17:27:24 +01:00
PolicyName * string ` min:"1" type:"string" required:"true" `
}
// String returns the string representation
func ( s GetKeyPolicyInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s GetKeyPolicyInput ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * GetKeyPolicyInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "GetKeyPolicyInput" }
if s . KeyId == nil {
invalidParams . Add ( request . NewErrParamRequired ( "KeyId" ) )
}
if s . KeyId != nil && len ( * s . KeyId ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "KeyId" , 1 ) )
}
if s . PolicyName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "PolicyName" ) )
}
if s . PolicyName != nil && len ( * s . PolicyName ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "PolicyName" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetKeyId sets the KeyId field's value.
func ( s * GetKeyPolicyInput ) SetKeyId ( v string ) * GetKeyPolicyInput {
s . KeyId = & v
return s
}
// SetPolicyName sets the PolicyName field's value.
func ( s * GetKeyPolicyInput ) SetPolicyName ( v string ) * GetKeyPolicyInput {
s . PolicyName = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/GetKeyPolicyResponse
2016-02-07 17:27:24 +01:00
type GetKeyPolicyOutput struct {
_ struct { } ` type:"structure" `
// A policy document in JSON format.
Policy * string ` min:"1" type:"string" `
}
// String returns the string representation
func ( s GetKeyPolicyOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s GetKeyPolicyOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetPolicy sets the Policy field's value.
func ( s * GetKeyPolicyOutput ) SetPolicy ( v string ) * GetKeyPolicyOutput {
s . Policy = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/GetKeyRotationStatusRequest
2016-02-07 17:27:24 +01:00
type GetKeyRotationStatusInput struct {
_ struct { } ` type:"structure" `
// A unique identifier for the customer master key. This value can be a globally
2016-07-15 15:49:02 +02:00
// unique identifier or the fully specified ARN to a key.
//
2016-11-19 19:41:01 +01:00
// * Key ARN Example - arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012
2016-10-17 23:21:08 +02:00
//
// KeyId is a required field
2016-02-07 17:27:24 +01:00
KeyId * string ` min:"1" type:"string" required:"true" `
}
// String returns the string representation
func ( s GetKeyRotationStatusInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s GetKeyRotationStatusInput ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * GetKeyRotationStatusInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "GetKeyRotationStatusInput" }
if s . KeyId == nil {
invalidParams . Add ( request . NewErrParamRequired ( "KeyId" ) )
}
if s . KeyId != nil && len ( * s . KeyId ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "KeyId" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetKeyId sets the KeyId field's value.
func ( s * GetKeyRotationStatusInput ) SetKeyId ( v string ) * GetKeyRotationStatusInput {
s . KeyId = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/GetKeyRotationStatusResponse
2016-02-07 17:27:24 +01:00
type GetKeyRotationStatusOutput struct {
_ struct { } ` type:"structure" `
// A Boolean value that specifies whether key rotation is enabled.
KeyRotationEnabled * bool ` type:"boolean" `
}
// String returns the string representation
func ( s GetKeyRotationStatusOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s GetKeyRotationStatusOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetKeyRotationEnabled sets the KeyRotationEnabled field's value.
func ( s * GetKeyRotationStatusOutput ) SetKeyRotationEnabled ( v bool ) * GetKeyRotationStatusOutput {
s . KeyRotationEnabled = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/GetParametersForImportRequest
2016-08-11 19:01:51 +02:00
type GetParametersForImportInput struct {
_ struct { } ` type:"structure" `
// The identifier of the CMK into which you will import key material. The CMK's
// Origin must be EXTERNAL.
//
// A valid identifier is the unique key ID or the Amazon Resource Name (ARN)
// of the CMK. Examples:
//
2016-11-19 19:41:01 +01:00
// * Unique key ID: 1234abcd-12ab-34cd-56ef-1234567890ab
2016-08-11 19:01:51 +02:00
//
2017-01-02 21:35:31 +01:00
// * Key ARN: arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab
2016-10-17 23:21:08 +02:00
//
// KeyId is a required field
2016-08-11 19:01:51 +02:00
KeyId * string ` min:"1" type:"string" required:"true" `
// The algorithm you will use to encrypt the key material before importing it
// with ImportKeyMaterial. For more information, see Encrypt the Key Material
// (http://docs.aws.amazon.com/kms/latest/developerguide/importing-keys-encrypt-key-material.html)
// in the AWS Key Management Service Developer Guide.
2016-10-17 23:21:08 +02:00
//
// WrappingAlgorithm is a required field
2016-08-11 19:01:51 +02:00
WrappingAlgorithm * string ` type:"string" required:"true" enum:"AlgorithmSpec" `
// The type of wrapping key (public key) to return in the response. Only 2048-bit
// RSA public keys are supported.
2016-10-17 23:21:08 +02:00
//
// WrappingKeySpec is a required field
2016-08-11 19:01:51 +02:00
WrappingKeySpec * string ` type:"string" required:"true" enum:"WrappingKeySpec" `
}
// String returns the string representation
func ( s GetParametersForImportInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s GetParametersForImportInput ) GoString ( ) string {
return s . String ( )
}
// Validate inspects the fields of the type to determine if they are valid.
func ( s * GetParametersForImportInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "GetParametersForImportInput" }
if s . KeyId == nil {
invalidParams . Add ( request . NewErrParamRequired ( "KeyId" ) )
}
if s . KeyId != nil && len ( * s . KeyId ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "KeyId" , 1 ) )
}
if s . WrappingAlgorithm == nil {
invalidParams . Add ( request . NewErrParamRequired ( "WrappingAlgorithm" ) )
}
if s . WrappingKeySpec == nil {
invalidParams . Add ( request . NewErrParamRequired ( "WrappingKeySpec" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetKeyId sets the KeyId field's value.
func ( s * GetParametersForImportInput ) SetKeyId ( v string ) * GetParametersForImportInput {
s . KeyId = & v
return s
}
// SetWrappingAlgorithm sets the WrappingAlgorithm field's value.
func ( s * GetParametersForImportInput ) SetWrappingAlgorithm ( v string ) * GetParametersForImportInput {
s . WrappingAlgorithm = & v
return s
}
// SetWrappingKeySpec sets the WrappingKeySpec field's value.
func ( s * GetParametersForImportInput ) SetWrappingKeySpec ( v string ) * GetParametersForImportInput {
s . WrappingKeySpec = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/GetParametersForImportResponse
2016-08-11 19:01:51 +02:00
type GetParametersForImportOutput struct {
_ struct { } ` type:"structure" `
// The import token to send in a subsequent ImportKeyMaterial request.
//
// ImportToken is automatically base64 encoded/decoded by the SDK.
ImportToken [ ] byte ` min:"1" type:"blob" `
// The identifier of the CMK to use in a subsequent ImportKeyMaterial request.
// This is the same CMK specified in the GetParametersForImport request.
KeyId * string ` min:"1" type:"string" `
// The time at which the import token and public key are no longer valid. After
// this time, you cannot use them to make an ImportKeyMaterial request and you
// must send another GetParametersForImport request to retrieve new ones.
ParametersValidTo * time . Time ` type:"timestamp" timestampFormat:"unix" `
// The public key to use to encrypt the key material before importing it with
// ImportKeyMaterial.
//
// PublicKey is automatically base64 encoded/decoded by the SDK.
PublicKey [ ] byte ` min:"1" type:"blob" `
}
// String returns the string representation
func ( s GetParametersForImportOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s GetParametersForImportOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetImportToken sets the ImportToken field's value.
func ( s * GetParametersForImportOutput ) SetImportToken ( v [ ] byte ) * GetParametersForImportOutput {
s . ImportToken = v
return s
}
// SetKeyId sets the KeyId field's value.
func ( s * GetParametersForImportOutput ) SetKeyId ( v string ) * GetParametersForImportOutput {
s . KeyId = & v
return s
}
// SetParametersValidTo sets the ParametersValidTo field's value.
func ( s * GetParametersForImportOutput ) SetParametersValidTo ( v time . Time ) * GetParametersForImportOutput {
s . ParametersValidTo = & v
return s
}
// SetPublicKey sets the PublicKey field's value.
func ( s * GetParametersForImportOutput ) SetPublicKey ( v [ ] byte ) * GetParametersForImportOutput {
s . PublicKey = v
return s
}
2016-02-07 17:27:24 +01:00
// A structure for specifying the conditions under which the operations permitted
// by the grant are allowed.
//
// You can use this structure to allow the operations permitted by the grant
// only when a specified encryption context is present. For more information
2016-10-07 12:51:50 +02:00
// about encryption context, see Encryption Context (http://docs.aws.amazon.com/kms/latest/developerguide/encryption-context.html)
2016-02-07 17:27:24 +01:00
// in the AWS Key Management Service Developer Guide.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/GrantConstraints
2016-02-07 17:27:24 +01:00
type GrantConstraints struct {
_ struct { } ` type:"structure" `
// Contains a list of key-value pairs that must be present in the encryption
// context of a subsequent operation permitted by the grant. When a subsequent
// operation permitted by the grant includes an encryption context that matches
// this list, the grant allows the operation. Otherwise, the operation is not
// allowed.
EncryptionContextEquals map [ string ] * string ` type:"map" `
// Contains a list of key-value pairs, a subset of which must be present in
// the encryption context of a subsequent operation permitted by the grant.
// When a subsequent operation permitted by the grant includes an encryption
// context that matches this list or is a subset of this list, the grant allows
// the operation. Otherwise, the operation is not allowed.
EncryptionContextSubset map [ string ] * string ` type:"map" `
}
// String returns the string representation
func ( s GrantConstraints ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s GrantConstraints ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetEncryptionContextEquals sets the EncryptionContextEquals field's value.
func ( s * GrantConstraints ) SetEncryptionContextEquals ( v map [ string ] * string ) * GrantConstraints {
s . EncryptionContextEquals = v
return s
}
// SetEncryptionContextSubset sets the EncryptionContextSubset field's value.
func ( s * GrantConstraints ) SetEncryptionContextSubset ( v map [ string ] * string ) * GrantConstraints {
s . EncryptionContextSubset = v
return s
}
2016-02-07 17:27:24 +01:00
// Contains information about an entry in a list of grants.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/GrantListEntry
2016-02-07 17:27:24 +01:00
type GrantListEntry struct {
_ struct { } ` type:"structure" `
// The conditions under which the grant's operations are allowed.
Constraints * GrantConstraints ` type:"structure" `
// The date and time when the grant was created.
CreationDate * time . Time ` type:"timestamp" timestampFormat:"unix" `
// The unique identifier for the grant.
GrantId * string ` min:"1" type:"string" `
// The principal that receives the grant's permissions.
GranteePrincipal * string ` min:"1" type:"string" `
// The AWS account under which the grant was issued.
IssuingAccount * string ` min:"1" type:"string" `
// The unique identifier for the customer master key (CMK) to which the grant
// applies.
KeyId * string ` min:"1" type:"string" `
// The friendly name that identifies the grant. If a name was provided in the
// CreateGrant request, that name is returned. Otherwise this value is null.
Name * string ` min:"1" type:"string" `
// The list of operations permitted by the grant.
Operations [ ] * string ` type:"list" `
// The principal that can retire the grant.
RetiringPrincipal * string ` min:"1" type:"string" `
}
// String returns the string representation
func ( s GrantListEntry ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s GrantListEntry ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetConstraints sets the Constraints field's value.
func ( s * GrantListEntry ) SetConstraints ( v * GrantConstraints ) * GrantListEntry {
s . Constraints = v
return s
}
// SetCreationDate sets the CreationDate field's value.
func ( s * GrantListEntry ) SetCreationDate ( v time . Time ) * GrantListEntry {
s . CreationDate = & v
return s
}
// SetGrantId sets the GrantId field's value.
func ( s * GrantListEntry ) SetGrantId ( v string ) * GrantListEntry {
s . GrantId = & v
return s
}
// SetGranteePrincipal sets the GranteePrincipal field's value.
func ( s * GrantListEntry ) SetGranteePrincipal ( v string ) * GrantListEntry {
s . GranteePrincipal = & v
return s
}
// SetIssuingAccount sets the IssuingAccount field's value.
func ( s * GrantListEntry ) SetIssuingAccount ( v string ) * GrantListEntry {
s . IssuingAccount = & v
return s
}
// SetKeyId sets the KeyId field's value.
func ( s * GrantListEntry ) SetKeyId ( v string ) * GrantListEntry {
s . KeyId = & v
return s
}
// SetName sets the Name field's value.
func ( s * GrantListEntry ) SetName ( v string ) * GrantListEntry {
s . Name = & v
return s
}
// SetOperations sets the Operations field's value.
func ( s * GrantListEntry ) SetOperations ( v [ ] * string ) * GrantListEntry {
s . Operations = v
return s
}
// SetRetiringPrincipal sets the RetiringPrincipal field's value.
func ( s * GrantListEntry ) SetRetiringPrincipal ( v string ) * GrantListEntry {
s . RetiringPrincipal = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/ImportKeyMaterialRequest
2016-08-11 19:01:51 +02:00
type ImportKeyMaterialInput struct {
_ struct { } ` type:"structure" `
// The encrypted key material to import. It must be encrypted with the public
// key that you received in the response to a previous GetParametersForImport
// request, using the wrapping algorithm that you specified in that request.
//
// EncryptedKeyMaterial is automatically base64 encoded/decoded by the SDK.
2016-10-17 23:21:08 +02:00
//
// EncryptedKeyMaterial is a required field
2016-08-11 19:01:51 +02:00
EncryptedKeyMaterial [ ] byte ` min:"1" type:"blob" required:"true" `
// Specifies whether the key material expires. The default is KEY_MATERIAL_EXPIRES,
// in which case you must include the ValidTo parameter. When this parameter
// is set to KEY_MATERIAL_DOES_NOT_EXPIRE, you must omit the ValidTo parameter.
ExpirationModel * string ` type:"string" enum:"ExpirationModelType" `
// The import token that you received in the response to a previous GetParametersForImport
// request. It must be from the same response that contained the public key
// that you used to encrypt the key material.
//
// ImportToken is automatically base64 encoded/decoded by the SDK.
2016-10-17 23:21:08 +02:00
//
// ImportToken is a required field
2016-08-11 19:01:51 +02:00
ImportToken [ ] byte ` min:"1" type:"blob" required:"true" `
// The identifier of the CMK to import the key material into. The CMK's Origin
// must be EXTERNAL.
//
// A valid identifier is the unique key ID or the Amazon Resource Name (ARN)
// of the CMK. Examples:
//
2016-11-19 19:41:01 +01:00
// * Unique key ID: 1234abcd-12ab-34cd-56ef-1234567890ab
2016-08-11 19:01:51 +02:00
//
2017-01-02 21:35:31 +01:00
// * Key ARN: arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab
2016-10-17 23:21:08 +02:00
//
// KeyId is a required field
2016-08-11 19:01:51 +02:00
KeyId * string ` min:"1" type:"string" required:"true" `
// The time at which the imported key material expires. When the key material
// expires, AWS KMS deletes the key material and the CMK becomes unusable. You
// must omit this parameter when the ExpirationModel parameter is set to KEY_MATERIAL_DOES_NOT_EXPIRE.
// Otherwise it is required.
2016-08-20 11:16:03 +02:00
ValidTo * time . Time ` type:"timestamp" timestampFormat:"unix" `
2016-08-11 19:01:51 +02:00
}
// String returns the string representation
func ( s ImportKeyMaterialInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ImportKeyMaterialInput ) GoString ( ) string {
return s . String ( )
}
// Validate inspects the fields of the type to determine if they are valid.
func ( s * ImportKeyMaterialInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "ImportKeyMaterialInput" }
if s . EncryptedKeyMaterial == nil {
invalidParams . Add ( request . NewErrParamRequired ( "EncryptedKeyMaterial" ) )
}
if s . EncryptedKeyMaterial != nil && len ( s . EncryptedKeyMaterial ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "EncryptedKeyMaterial" , 1 ) )
}
if s . ImportToken == nil {
invalidParams . Add ( request . NewErrParamRequired ( "ImportToken" ) )
}
if s . ImportToken != nil && len ( s . ImportToken ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "ImportToken" , 1 ) )
}
if s . KeyId == nil {
invalidParams . Add ( request . NewErrParamRequired ( "KeyId" ) )
}
if s . KeyId != nil && len ( * s . KeyId ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "KeyId" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetEncryptedKeyMaterial sets the EncryptedKeyMaterial field's value.
func ( s * ImportKeyMaterialInput ) SetEncryptedKeyMaterial ( v [ ] byte ) * ImportKeyMaterialInput {
s . EncryptedKeyMaterial = v
return s
}
// SetExpirationModel sets the ExpirationModel field's value.
func ( s * ImportKeyMaterialInput ) SetExpirationModel ( v string ) * ImportKeyMaterialInput {
s . ExpirationModel = & v
return s
}
// SetImportToken sets the ImportToken field's value.
func ( s * ImportKeyMaterialInput ) SetImportToken ( v [ ] byte ) * ImportKeyMaterialInput {
s . ImportToken = v
return s
}
// SetKeyId sets the KeyId field's value.
func ( s * ImportKeyMaterialInput ) SetKeyId ( v string ) * ImportKeyMaterialInput {
s . KeyId = & v
return s
}
// SetValidTo sets the ValidTo field's value.
func ( s * ImportKeyMaterialInput ) SetValidTo ( v time . Time ) * ImportKeyMaterialInput {
s . ValidTo = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/ImportKeyMaterialResponse
2016-08-11 19:01:51 +02:00
type ImportKeyMaterialOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s ImportKeyMaterialOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ImportKeyMaterialOutput ) GoString ( ) string {
return s . String ( )
}
2016-02-07 17:27:24 +01:00
// Contains information about each entry in the key list.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/KeyListEntry
2016-02-07 17:27:24 +01:00
type KeyListEntry struct {
_ struct { } ` type:"structure" `
// ARN of the key.
KeyArn * string ` min:"20" type:"string" `
// Unique identifier of the key.
KeyId * string ` min:"1" type:"string" `
}
// String returns the string representation
func ( s KeyListEntry ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s KeyListEntry ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetKeyArn sets the KeyArn field's value.
func ( s * KeyListEntry ) SetKeyArn ( v string ) * KeyListEntry {
s . KeyArn = & v
return s
}
// SetKeyId sets the KeyId field's value.
func ( s * KeyListEntry ) SetKeyId ( v string ) * KeyListEntry {
s . KeyId = & v
return s
}
2016-02-07 17:27:24 +01:00
// Contains metadata about a customer master key (CMK).
//
// This data type is used as a response element for the CreateKey and DescribeKey
// operations.
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/KeyMetadata
2016-02-07 17:27:24 +01:00
type KeyMetadata struct {
_ struct { } ` type:"structure" `
2016-08-11 19:01:51 +02:00
// The twelve-digit account ID of the AWS account that owns the CMK.
2016-02-07 17:27:24 +01:00
AWSAccountId * string ` type:"string" `
2016-08-11 19:01:51 +02:00
// The Amazon Resource Name (ARN) of the CMK. For examples, see AWS Key Management
2016-02-07 17:27:24 +01:00
// Service (AWS KMS) (http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-kms)
// in the Example ARNs section of the AWS General Reference.
Arn * string ` min:"20" type:"string" `
2016-08-11 19:01:51 +02:00
// The date and time when the CMK was created.
2016-02-07 17:27:24 +01:00
CreationDate * time . Time ` type:"timestamp" timestampFormat:"unix" `
2016-08-11 19:01:51 +02:00
// The date and time after which AWS KMS deletes the CMK. This value is present
// only when KeyState is PendingDeletion, otherwise this value is omitted.
2016-02-07 17:27:24 +01:00
DeletionDate * time . Time ` type:"timestamp" timestampFormat:"unix" `
2016-08-11 19:01:51 +02:00
// The description of the CMK.
2016-02-07 17:27:24 +01:00
Description * string ` type:"string" `
2016-08-11 19:01:51 +02:00
// Specifies whether the CMK is enabled. When KeyState is Enabled this value
2016-02-07 17:27:24 +01:00
// is true, otherwise it is false.
Enabled * bool ` type:"boolean" `
2016-08-11 19:01:51 +02:00
// Specifies whether the CMK's key material expires. This value is present only
// when Origin is EXTERNAL, otherwise this value is omitted.
ExpirationModel * string ` type:"string" enum:"ExpirationModelType" `
// The globally unique identifier for the CMK.
2016-10-17 23:21:08 +02:00
//
// KeyId is a required field
2016-02-07 17:27:24 +01:00
KeyId * string ` min:"1" type:"string" required:"true" `
2016-08-11 19:01:51 +02:00
// The state of the CMK.
2016-02-07 17:27:24 +01:00
//
2016-07-15 15:49:02 +02:00
// For more information about how key state affects the use of a CMK, see How
// Key State Affects the Use of a Customer Master Key (http://docs.aws.amazon.com/kms/latest/developerguide/key-state.html)
2016-02-07 17:27:24 +01:00
// in the AWS Key Management Service Developer Guide.
KeyState * string ` type:"string" enum:"KeyState" `
2016-08-11 19:01:51 +02:00
// The cryptographic operations for which you can use the CMK. Currently the
// only allowed value is ENCRYPT_DECRYPT, which means you can use the CMK for
2016-02-07 17:27:24 +01:00
// the Encrypt and Decrypt operations.
KeyUsage * string ` type:"string" enum:"KeyUsageType" `
2016-08-11 19:01:51 +02:00
// The source of the CMK's key material. When this value is AWS_KMS, AWS KMS
// created the key material. When this value is EXTERNAL, the key material was
// imported from your existing key management infrastructure or the CMK lacks
// key material.
Origin * string ` type:"string" enum:"OriginType" `
// The time at which the imported key material expires. When the key material
// expires, AWS KMS deletes the key material and the CMK becomes unusable. This
// value is present only for CMKs whose Origin is EXTERNAL and whose ExpirationModel
// is KEY_MATERIAL_EXPIRES, otherwise this value is omitted.
ValidTo * time . Time ` type:"timestamp" timestampFormat:"unix" `
2016-02-07 17:27:24 +01:00
}
// String returns the string representation
func ( s KeyMetadata ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s KeyMetadata ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetAWSAccountId sets the AWSAccountId field's value.
func ( s * KeyMetadata ) SetAWSAccountId ( v string ) * KeyMetadata {
s . AWSAccountId = & v
return s
}
// SetArn sets the Arn field's value.
func ( s * KeyMetadata ) SetArn ( v string ) * KeyMetadata {
s . Arn = & v
return s
}
// SetCreationDate sets the CreationDate field's value.
func ( s * KeyMetadata ) SetCreationDate ( v time . Time ) * KeyMetadata {
s . CreationDate = & v
return s
}
// SetDeletionDate sets the DeletionDate field's value.
func ( s * KeyMetadata ) SetDeletionDate ( v time . Time ) * KeyMetadata {
s . DeletionDate = & v
return s
}
// SetDescription sets the Description field's value.
func ( s * KeyMetadata ) SetDescription ( v string ) * KeyMetadata {
s . Description = & v
return s
}
// SetEnabled sets the Enabled field's value.
func ( s * KeyMetadata ) SetEnabled ( v bool ) * KeyMetadata {
s . Enabled = & v
return s
}
// SetExpirationModel sets the ExpirationModel field's value.
func ( s * KeyMetadata ) SetExpirationModel ( v string ) * KeyMetadata {
s . ExpirationModel = & v
return s
}
// SetKeyId sets the KeyId field's value.
func ( s * KeyMetadata ) SetKeyId ( v string ) * KeyMetadata {
s . KeyId = & v
return s
}
// SetKeyState sets the KeyState field's value.
func ( s * KeyMetadata ) SetKeyState ( v string ) * KeyMetadata {
s . KeyState = & v
return s
}
// SetKeyUsage sets the KeyUsage field's value.
func ( s * KeyMetadata ) SetKeyUsage ( v string ) * KeyMetadata {
s . KeyUsage = & v
return s
}
// SetOrigin sets the Origin field's value.
func ( s * KeyMetadata ) SetOrigin ( v string ) * KeyMetadata {
s . Origin = & v
return s
}
// SetValidTo sets the ValidTo field's value.
func ( s * KeyMetadata ) SetValidTo ( v time . Time ) * KeyMetadata {
s . ValidTo = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/ListAliasesRequest
2016-02-07 17:27:24 +01:00
type ListAliasesInput struct {
_ struct { } ` type:"structure" `
2017-02-20 18:20:36 +01:00
// Use this parameter to specify the maximum number of items to return. When
// this value is present, AWS KMS does not return more than the specified number
// of items, but it might return fewer.
2016-02-07 17:27:24 +01:00
//
// This value is optional. If you include a value, it must be between 1 and
// 100, inclusive. If you do not include a value, it defaults to 50.
Limit * int64 ` min:"1" type:"integer" `
2017-02-20 18:20:36 +01:00
// Use this parameter in a subsequent request after you receive a response with
// truncated results. Set it to the value of NextMarker from the truncated response
// you just received.
2016-02-07 17:27:24 +01:00
Marker * string ` min:"1" type:"string" `
}
// String returns the string representation
func ( s ListAliasesInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ListAliasesInput ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * ListAliasesInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "ListAliasesInput" }
if s . Limit != nil && * s . Limit < 1 {
invalidParams . Add ( request . NewErrParamMinValue ( "Limit" , 1 ) )
}
if s . Marker != nil && len ( * s . Marker ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "Marker" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetLimit sets the Limit field's value.
func ( s * ListAliasesInput ) SetLimit ( v int64 ) * ListAliasesInput {
s . Limit = & v
return s
}
// SetMarker sets the Marker field's value.
func ( s * ListAliasesInput ) SetMarker ( v string ) * ListAliasesInput {
s . Marker = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/ListAliasesResponse
2016-02-07 17:27:24 +01:00
type ListAliasesOutput struct {
_ struct { } ` type:"structure" `
// A list of key aliases in the user's account.
Aliases [ ] * AliasListEntry ` type:"list" `
2017-02-20 18:20:36 +01:00
// When Truncated is true, this element is present and contains the value to
// use for the Marker parameter in a subsequent request.
2016-02-07 17:27:24 +01:00
NextMarker * string ` min:"1" type:"string" `
2017-02-20 18:20:36 +01:00
// A flag that indicates whether there are more items in the list. When this
// value is true, the list in this response is truncated. To retrieve more items,
// pass the value of the NextMarker element in this response to the Marker parameter
// in a subsequent request.
2016-02-07 17:27:24 +01:00
Truncated * bool ` type:"boolean" `
}
// String returns the string representation
func ( s ListAliasesOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ListAliasesOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetAliases sets the Aliases field's value.
func ( s * ListAliasesOutput ) SetAliases ( v [ ] * AliasListEntry ) * ListAliasesOutput {
s . Aliases = v
return s
}
// SetNextMarker sets the NextMarker field's value.
func ( s * ListAliasesOutput ) SetNextMarker ( v string ) * ListAliasesOutput {
s . NextMarker = & v
return s
}
// SetTruncated sets the Truncated field's value.
func ( s * ListAliasesOutput ) SetTruncated ( v bool ) * ListAliasesOutput {
s . Truncated = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/ListGrantsRequest
2016-02-07 17:27:24 +01:00
type ListGrantsInput struct {
_ struct { } ` type:"structure" `
// A unique identifier for the customer master key. This value can be a globally
2016-07-15 15:49:02 +02:00
// unique identifier or the fully specified ARN to a key.
//
2016-11-19 19:41:01 +01:00
// * Key ARN Example - arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012
2016-10-17 23:21:08 +02:00
//
// KeyId is a required field
2016-02-07 17:27:24 +01:00
KeyId * string ` min:"1" type:"string" required:"true" `
2017-02-20 18:20:36 +01:00
// Use this parameter to specify the maximum number of items to return. When
// this value is present, AWS KMS does not return more than the specified number
// of items, but it might return fewer.
2016-02-07 17:27:24 +01:00
//
// This value is optional. If you include a value, it must be between 1 and
// 100, inclusive. If you do not include a value, it defaults to 50.
Limit * int64 ` min:"1" type:"integer" `
2017-02-20 18:20:36 +01:00
// Use this parameter in a subsequent request after you receive a response with
// truncated results. Set it to the value of NextMarker from the truncated response
// you just received.
2016-02-07 17:27:24 +01:00
Marker * string ` min:"1" type:"string" `
}
// String returns the string representation
func ( s ListGrantsInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ListGrantsInput ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * ListGrantsInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "ListGrantsInput" }
if s . KeyId == nil {
invalidParams . Add ( request . NewErrParamRequired ( "KeyId" ) )
}
if s . KeyId != nil && len ( * s . KeyId ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "KeyId" , 1 ) )
}
if s . Limit != nil && * s . Limit < 1 {
invalidParams . Add ( request . NewErrParamMinValue ( "Limit" , 1 ) )
}
if s . Marker != nil && len ( * s . Marker ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "Marker" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetKeyId sets the KeyId field's value.
func ( s * ListGrantsInput ) SetKeyId ( v string ) * ListGrantsInput {
s . KeyId = & v
return s
}
// SetLimit sets the Limit field's value.
func ( s * ListGrantsInput ) SetLimit ( v int64 ) * ListGrantsInput {
s . Limit = & v
return s
}
// SetMarker sets the Marker field's value.
func ( s * ListGrantsInput ) SetMarker ( v string ) * ListGrantsInput {
s . Marker = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/ListGrantsResponse
2016-02-07 17:27:24 +01:00
type ListGrantsResponse struct {
_ struct { } ` type:"structure" `
// A list of grants.
Grants [ ] * GrantListEntry ` type:"list" `
2017-02-20 18:20:36 +01:00
// When Truncated is true, this element is present and contains the value to
// use for the Marker parameter in a subsequent request.
2016-02-07 17:27:24 +01:00
NextMarker * string ` min:"1" type:"string" `
2017-02-20 18:20:36 +01:00
// A flag that indicates whether there are more items in the list. When this
// value is true, the list in this response is truncated. To retrieve more items,
// pass the value of the NextMarker element in this response to the Marker parameter
// in a subsequent request.
2016-02-07 17:27:24 +01:00
Truncated * bool ` type:"boolean" `
}
// String returns the string representation
func ( s ListGrantsResponse ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ListGrantsResponse ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetGrants sets the Grants field's value.
func ( s * ListGrantsResponse ) SetGrants ( v [ ] * GrantListEntry ) * ListGrantsResponse {
s . Grants = v
return s
}
// SetNextMarker sets the NextMarker field's value.
func ( s * ListGrantsResponse ) SetNextMarker ( v string ) * ListGrantsResponse {
s . NextMarker = & v
return s
}
// SetTruncated sets the Truncated field's value.
func ( s * ListGrantsResponse ) SetTruncated ( v bool ) * ListGrantsResponse {
s . Truncated = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/ListKeyPoliciesRequest
2016-02-07 17:27:24 +01:00
type ListKeyPoliciesInput struct {
_ struct { } ` type:"structure" `
2017-01-02 21:35:31 +01:00
// A unique identifier for the customer master key (CMK). You can use the unique
// key ID or the Amazon Resource Name (ARN) of the CMK. Examples:
2016-07-15 15:49:02 +02:00
//
2017-01-02 21:35:31 +01:00
// * Unique key ID: 1234abcd-12ab-34cd-56ef-1234567890ab
2016-07-15 15:49:02 +02:00
//
2017-01-02 21:35:31 +01:00
// * Key ARN: arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab
2016-10-17 23:21:08 +02:00
//
// KeyId is a required field
2016-02-07 17:27:24 +01:00
KeyId * string ` min:"1" type:"string" required:"true" `
2017-02-20 18:20:36 +01:00
// Use this parameter to specify the maximum number of items to return. When
// this value is present, AWS KMS does not return more than the specified number
// of items, but it might return fewer.
2016-02-07 17:27:24 +01:00
//
// This value is optional. If you include a value, it must be between 1 and
// 1000, inclusive. If you do not include a value, it defaults to 100.
//
// Currently only 1 policy can be attached to a key.
Limit * int64 ` min:"1" type:"integer" `
2017-02-20 18:20:36 +01:00
// Use this parameter in a subsequent request after you receive a response with
// truncated results. Set it to the value of NextMarker from the truncated response
// you just received.
2016-02-07 17:27:24 +01:00
Marker * string ` min:"1" type:"string" `
}
// String returns the string representation
func ( s ListKeyPoliciesInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ListKeyPoliciesInput ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * ListKeyPoliciesInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "ListKeyPoliciesInput" }
if s . KeyId == nil {
invalidParams . Add ( request . NewErrParamRequired ( "KeyId" ) )
}
if s . KeyId != nil && len ( * s . KeyId ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "KeyId" , 1 ) )
}
if s . Limit != nil && * s . Limit < 1 {
invalidParams . Add ( request . NewErrParamMinValue ( "Limit" , 1 ) )
}
if s . Marker != nil && len ( * s . Marker ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "Marker" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetKeyId sets the KeyId field's value.
func ( s * ListKeyPoliciesInput ) SetKeyId ( v string ) * ListKeyPoliciesInput {
s . KeyId = & v
return s
}
// SetLimit sets the Limit field's value.
func ( s * ListKeyPoliciesInput ) SetLimit ( v int64 ) * ListKeyPoliciesInput {
s . Limit = & v
return s
}
// SetMarker sets the Marker field's value.
func ( s * ListKeyPoliciesInput ) SetMarker ( v string ) * ListKeyPoliciesInput {
s . Marker = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/ListKeyPoliciesResponse
2016-02-07 17:27:24 +01:00
type ListKeyPoliciesOutput struct {
_ struct { } ` type:"structure" `
2017-02-20 18:20:36 +01:00
// When Truncated is true, this element is present and contains the value to
// use for the Marker parameter in a subsequent request.
2016-02-07 17:27:24 +01:00
NextMarker * string ` min:"1" type:"string" `
// A list of policy names. Currently, there is only one policy and it is named
// "Default".
PolicyNames [ ] * string ` type:"list" `
2017-02-20 18:20:36 +01:00
// A flag that indicates whether there are more items in the list. When this
// value is true, the list in this response is truncated. To retrieve more items,
// pass the value of the NextMarker element in this response to the Marker parameter
// in a subsequent request.
2016-02-07 17:27:24 +01:00
Truncated * bool ` type:"boolean" `
}
// String returns the string representation
func ( s ListKeyPoliciesOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ListKeyPoliciesOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetNextMarker sets the NextMarker field's value.
func ( s * ListKeyPoliciesOutput ) SetNextMarker ( v string ) * ListKeyPoliciesOutput {
s . NextMarker = & v
return s
}
// SetPolicyNames sets the PolicyNames field's value.
func ( s * ListKeyPoliciesOutput ) SetPolicyNames ( v [ ] * string ) * ListKeyPoliciesOutput {
s . PolicyNames = v
return s
}
// SetTruncated sets the Truncated field's value.
func ( s * ListKeyPoliciesOutput ) SetTruncated ( v bool ) * ListKeyPoliciesOutput {
s . Truncated = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/ListKeysRequest
2016-02-07 17:27:24 +01:00
type ListKeysInput struct {
_ struct { } ` type:"structure" `
2017-02-20 18:20:36 +01:00
// Use this parameter to specify the maximum number of items to return. When
// this value is present, AWS KMS does not return more than the specified number
// of items, but it might return fewer.
2016-02-07 17:27:24 +01:00
//
// This value is optional. If you include a value, it must be between 1 and
// 1000, inclusive. If you do not include a value, it defaults to 100.
Limit * int64 ` min:"1" type:"integer" `
2017-02-20 18:20:36 +01:00
// Use this parameter in a subsequent request after you receive a response with
// truncated results. Set it to the value of NextMarker from the truncated response
// you just received.
2016-02-07 17:27:24 +01:00
Marker * string ` min:"1" type:"string" `
}
// String returns the string representation
func ( s ListKeysInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ListKeysInput ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * ListKeysInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "ListKeysInput" }
if s . Limit != nil && * s . Limit < 1 {
invalidParams . Add ( request . NewErrParamMinValue ( "Limit" , 1 ) )
}
if s . Marker != nil && len ( * s . Marker ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "Marker" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetLimit sets the Limit field's value.
func ( s * ListKeysInput ) SetLimit ( v int64 ) * ListKeysInput {
s . Limit = & v
return s
}
// SetMarker sets the Marker field's value.
func ( s * ListKeysInput ) SetMarker ( v string ) * ListKeysInput {
s . Marker = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/ListKeysResponse
2016-02-07 17:27:24 +01:00
type ListKeysOutput struct {
_ struct { } ` type:"structure" `
// A list of keys.
Keys [ ] * KeyListEntry ` type:"list" `
2017-02-20 18:20:36 +01:00
// When Truncated is true, this element is present and contains the value to
// use for the Marker parameter in a subsequent request.
2016-02-07 17:27:24 +01:00
NextMarker * string ` min:"1" type:"string" `
2017-02-20 18:20:36 +01:00
// A flag that indicates whether there are more items in the list. When this
// value is true, the list in this response is truncated. To retrieve more items,
// pass the value of the NextMarker element in this response to the Marker parameter
// in a subsequent request.
2016-02-07 17:27:24 +01:00
Truncated * bool ` type:"boolean" `
}
// String returns the string representation
func ( s ListKeysOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ListKeysOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetKeys sets the Keys field's value.
func ( s * ListKeysOutput ) SetKeys ( v [ ] * KeyListEntry ) * ListKeysOutput {
s . Keys = v
return s
}
// SetNextMarker sets the NextMarker field's value.
func ( s * ListKeysOutput ) SetNextMarker ( v string ) * ListKeysOutput {
s . NextMarker = & v
return s
}
// SetTruncated sets the Truncated field's value.
func ( s * ListKeysOutput ) SetTruncated ( v bool ) * ListKeysOutput {
s . Truncated = & v
return s
}
2017-02-20 18:20:36 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/ListResourceTagsRequest
type ListResourceTagsInput struct {
_ struct { } ` type:"structure" `
// A unique identifier for the CMK whose tags you are listing. You can use the
// unique key ID or the Amazon Resource Name (ARN) of the CMK. Examples:
//
// * Unique key ID: 1234abcd-12ab-34cd-56ef-1234567890ab
//
// * Key ARN: arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab
//
// KeyId is a required field
KeyId * string ` min:"1" type:"string" required:"true" `
// Use this parameter to specify the maximum number of items to return. When
// this value is present, AWS KMS does not return more than the specified number
// of items, but it might return fewer.
//
// This value is optional. If you include a value, it must be between 1 and
// 50, inclusive. If you do not include a value, it defaults to 50.
Limit * int64 ` min:"1" type:"integer" `
// Use this parameter in a subsequent request after you receive a response with
// truncated results. Set it to the value of NextMarker from the truncated response
// you just received.
//
// Do not attempt to construct this value. Use only the value of NextMarker
// from the truncated response you just received.
Marker * string ` min:"1" type:"string" `
}
// String returns the string representation
func ( s ListResourceTagsInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ListResourceTagsInput ) GoString ( ) string {
return s . String ( )
}
// Validate inspects the fields of the type to determine if they are valid.
func ( s * ListResourceTagsInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "ListResourceTagsInput" }
if s . KeyId == nil {
invalidParams . Add ( request . NewErrParamRequired ( "KeyId" ) )
}
if s . KeyId != nil && len ( * s . KeyId ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "KeyId" , 1 ) )
}
if s . Limit != nil && * s . Limit < 1 {
invalidParams . Add ( request . NewErrParamMinValue ( "Limit" , 1 ) )
}
if s . Marker != nil && len ( * s . Marker ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "Marker" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
// SetKeyId sets the KeyId field's value.
func ( s * ListResourceTagsInput ) SetKeyId ( v string ) * ListResourceTagsInput {
s . KeyId = & v
return s
}
// SetLimit sets the Limit field's value.
func ( s * ListResourceTagsInput ) SetLimit ( v int64 ) * ListResourceTagsInput {
s . Limit = & v
return s
}
// SetMarker sets the Marker field's value.
func ( s * ListResourceTagsInput ) SetMarker ( v string ) * ListResourceTagsInput {
s . Marker = & v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/ListResourceTagsResponse
type ListResourceTagsOutput struct {
_ struct { } ` type:"structure" `
// When Truncated is true, this element is present and contains the value to
// use for the Marker parameter in a subsequent request.
//
// Do not assume or infer any information from this value.
NextMarker * string ` min:"1" type:"string" `
// A list of tags. Each tag consists of a tag key and a tag value.
Tags [ ] * Tag ` type:"list" `
// A flag that indicates whether there are more items in the list. When this
// value is true, the list in this response is truncated. To retrieve more items,
// pass the value of the NextMarker element in this response to the Marker parameter
// in a subsequent request.
Truncated * bool ` type:"boolean" `
}
// String returns the string representation
func ( s ListResourceTagsOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ListResourceTagsOutput ) GoString ( ) string {
return s . String ( )
}
// SetNextMarker sets the NextMarker field's value.
func ( s * ListResourceTagsOutput ) SetNextMarker ( v string ) * ListResourceTagsOutput {
s . NextMarker = & v
return s
}
// SetTags sets the Tags field's value.
func ( s * ListResourceTagsOutput ) SetTags ( v [ ] * Tag ) * ListResourceTagsOutput {
s . Tags = v
return s
}
// SetTruncated sets the Truncated field's value.
func ( s * ListResourceTagsOutput ) SetTruncated ( v bool ) * ListResourceTagsOutput {
s . Truncated = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/ListRetirableGrantsRequest
2016-02-07 17:27:24 +01:00
type ListRetirableGrantsInput struct {
_ struct { } ` type:"structure" `
2017-02-20 18:20:36 +01:00
// Use this parameter to specify the maximum number of items to return. When
// this value is present, AWS KMS does not return more than the specified number
// of items, but it might return fewer.
2016-02-07 17:27:24 +01:00
//
// This value is optional. If you include a value, it must be between 1 and
// 100, inclusive. If you do not include a value, it defaults to 50.
Limit * int64 ` min:"1" type:"integer" `
2017-02-20 18:20:36 +01:00
// Use this parameter in a subsequent request after you receive a response with
// truncated results. Set it to the value of NextMarker from the truncated response
// you just received.
2016-02-07 17:27:24 +01:00
Marker * string ` min:"1" type:"string" `
// The retiring principal for which to list grants.
//
// To specify the retiring principal, use the Amazon Resource Name (ARN) (http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html)
// of an AWS principal. Valid AWS principals include AWS accounts (root), IAM
// users, federated users, and assumed role users. For examples of the ARN syntax
2016-07-15 15:49:02 +02:00
// for specifying a principal, see AWS Identity and Access Management (IAM)
2016-02-07 17:27:24 +01:00
// (http://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html#arn-syntax-iam)
// in the Example ARNs section of the Amazon Web Services General Reference.
2016-10-17 23:21:08 +02:00
//
// RetiringPrincipal is a required field
2016-02-07 17:27:24 +01:00
RetiringPrincipal * string ` min:"1" type:"string" required:"true" `
}
// String returns the string representation
func ( s ListRetirableGrantsInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ListRetirableGrantsInput ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * ListRetirableGrantsInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "ListRetirableGrantsInput" }
if s . Limit != nil && * s . Limit < 1 {
invalidParams . Add ( request . NewErrParamMinValue ( "Limit" , 1 ) )
}
if s . Marker != nil && len ( * s . Marker ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "Marker" , 1 ) )
}
if s . RetiringPrincipal == nil {
invalidParams . Add ( request . NewErrParamRequired ( "RetiringPrincipal" ) )
}
if s . RetiringPrincipal != nil && len ( * s . RetiringPrincipal ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "RetiringPrincipal" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetLimit sets the Limit field's value.
func ( s * ListRetirableGrantsInput ) SetLimit ( v int64 ) * ListRetirableGrantsInput {
s . Limit = & v
return s
}
// SetMarker sets the Marker field's value.
func ( s * ListRetirableGrantsInput ) SetMarker ( v string ) * ListRetirableGrantsInput {
s . Marker = & v
return s
}
// SetRetiringPrincipal sets the RetiringPrincipal field's value.
func ( s * ListRetirableGrantsInput ) SetRetiringPrincipal ( v string ) * ListRetirableGrantsInput {
s . RetiringPrincipal = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/PutKeyPolicyRequest
2016-02-07 17:27:24 +01:00
type PutKeyPolicyInput struct {
_ struct { } ` type:"structure" `
2016-07-15 15:49:02 +02:00
// A flag to indicate whether to bypass the key policy lockout safety check.
//
2016-11-19 19:41:01 +01:00
// Setting this value to true increases the likelihood that the CMK becomes
2016-07-15 15:49:02 +02:00
// unmanageable. Do not set this value to true indiscriminately.
//
// For more information, refer to the scenario in the Default Key Policy (http://docs.aws.amazon.com/kms/latest/developerguide/key-policies.html#key-policy-default-allow-root-enable-iam)
// section in the AWS Key Management Service Developer Guide.
//
2017-02-20 18:20:36 +01:00
// Use this parameter only when you intend to prevent the principal that is
// making the request from making a subsequent PutKeyPolicy request on the CMK.
2016-07-15 15:49:02 +02:00
//
// The default value is false.
BypassPolicyLockoutSafetyCheck * bool ` type:"boolean" `
// A unique identifier for the CMK.
//
// Use the CMK's unique identifier or its Amazon Resource Name (ARN). For example:
//
2016-11-19 19:41:01 +01:00
// * Unique ID: 1234abcd-12ab-34cd-56ef-1234567890ab
2016-07-15 15:49:02 +02:00
//
2017-01-02 21:35:31 +01:00
// * ARN: arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab
2016-10-17 23:21:08 +02:00
//
// KeyId is a required field
2016-02-07 17:27:24 +01:00
KeyId * string ` min:"1" type:"string" required:"true" `
2016-07-15 15:49:02 +02:00
// The key policy to attach to the CMK.
//
2016-08-11 19:01:51 +02:00
// If you do not set BypassPolicyLockoutSafetyCheck to true, the policy must
// meet the following criteria:
2016-07-15 15:49:02 +02:00
//
2017-02-20 18:20:36 +01:00
// * It must allow the principal that is making the PutKeyPolicy request
// to make a subsequent PutKeyPolicy request on the CMK. This reduces the
// likelihood that the CMK becomes unmanageable. For more information, refer
// to the scenario in the Default Key Policy (http://docs.aws.amazon.com/kms/latest/developerguide/key-policies.html#key-policy-default-allow-root-enable-iam)
2016-11-19 19:41:01 +01:00
// section in the AWS Key Management Service Developer Guide.
2016-07-15 15:49:02 +02:00
//
2017-02-20 18:20:36 +01:00
// * The principals that are specified in the key policy must exist and be
// visible to AWS KMS. When you create a new AWS principal (for example,
// an IAM user or role), you might need to enforce a delay before specifying
// the new principal in a key policy because the new principal might not
// immediately be visible to AWS KMS. For more information, see Changes that
// I make are not always immediately visible (http://docs.aws.amazon.com/IAM/latest/UserGuide/troubleshoot_general.html#troubleshoot_general_eventual-consistency)
2016-11-19 19:41:01 +01:00
// in the IAM User Guide.
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// The policy size limit is 32 KiB (32768 bytes).
2016-10-17 23:21:08 +02:00
//
// Policy is a required field
2016-02-07 17:27:24 +01:00
Policy * string ` min:"1" type:"string" required:"true" `
2016-07-15 15:49:02 +02:00
// The name of the key policy.
//
// This value must be default.
2016-10-17 23:21:08 +02:00
//
// PolicyName is a required field
2016-02-07 17:27:24 +01:00
PolicyName * string ` min:"1" type:"string" required:"true" `
}
// String returns the string representation
func ( s PutKeyPolicyInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s PutKeyPolicyInput ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * PutKeyPolicyInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "PutKeyPolicyInput" }
if s . KeyId == nil {
invalidParams . Add ( request . NewErrParamRequired ( "KeyId" ) )
}
if s . KeyId != nil && len ( * s . KeyId ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "KeyId" , 1 ) )
}
if s . Policy == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Policy" ) )
}
if s . Policy != nil && len ( * s . Policy ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "Policy" , 1 ) )
}
if s . PolicyName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "PolicyName" ) )
}
if s . PolicyName != nil && len ( * s . PolicyName ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "PolicyName" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetBypassPolicyLockoutSafetyCheck sets the BypassPolicyLockoutSafetyCheck field's value.
func ( s * PutKeyPolicyInput ) SetBypassPolicyLockoutSafetyCheck ( v bool ) * PutKeyPolicyInput {
s . BypassPolicyLockoutSafetyCheck = & v
return s
}
// SetKeyId sets the KeyId field's value.
func ( s * PutKeyPolicyInput ) SetKeyId ( v string ) * PutKeyPolicyInput {
s . KeyId = & v
return s
}
// SetPolicy sets the Policy field's value.
func ( s * PutKeyPolicyInput ) SetPolicy ( v string ) * PutKeyPolicyInput {
s . Policy = & v
return s
}
// SetPolicyName sets the PolicyName field's value.
func ( s * PutKeyPolicyInput ) SetPolicyName ( v string ) * PutKeyPolicyInput {
s . PolicyName = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/PutKeyPolicyOutput
2016-02-07 17:27:24 +01:00
type PutKeyPolicyOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s PutKeyPolicyOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s PutKeyPolicyOutput ) GoString ( ) string {
return s . String ( )
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/ReEncryptRequest
2016-02-07 17:27:24 +01:00
type ReEncryptInput struct {
_ struct { } ` type:"structure" `
2017-01-02 21:35:31 +01:00
// Ciphertext of the data to reencrypt.
2016-03-18 20:35:09 +01:00
//
// CiphertextBlob is automatically base64 encoded/decoded by the SDK.
2016-10-17 23:21:08 +02:00
//
// CiphertextBlob is a required field
2016-02-07 17:27:24 +01:00
CiphertextBlob [ ] byte ` min:"1" type:"blob" required:"true" `
2017-01-02 21:35:31 +01:00
// Encryption context to use when the data is reencrypted.
2016-02-07 17:27:24 +01:00
DestinationEncryptionContext map [ string ] * string ` type:"map" `
2017-01-02 21:35:31 +01:00
// A unique identifier for the CMK to use to reencrypt the data. This value
// can be a globally unique identifier, a fully specified ARN to either an alias
// or a key, or an alias name prefixed by "alias/".
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * Key ARN Example - arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * Alias ARN Example - arn:aws:kms:us-east-1:123456789012:alias/MyAliasName
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * Alias Name Example - alias/MyAliasName
2016-10-17 23:21:08 +02:00
//
// DestinationKeyId is a required field
2016-02-07 17:27:24 +01:00
DestinationKeyId * string ` min:"1" type:"string" required:"true" `
// A list of grant tokens.
//
2016-07-15 15:49:02 +02:00
// For more information, see Grant Tokens (http://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#grant_token)
2016-02-07 17:27:24 +01:00
// in the AWS Key Management Service Developer Guide.
GrantTokens [ ] * string ` type:"list" `
// Encryption context used to encrypt and decrypt the data specified in the
// CiphertextBlob parameter.
SourceEncryptionContext map [ string ] * string ` type:"map" `
}
// String returns the string representation
func ( s ReEncryptInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ReEncryptInput ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * ReEncryptInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "ReEncryptInput" }
if s . CiphertextBlob == nil {
invalidParams . Add ( request . NewErrParamRequired ( "CiphertextBlob" ) )
}
if s . CiphertextBlob != nil && len ( s . CiphertextBlob ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "CiphertextBlob" , 1 ) )
}
if s . DestinationKeyId == nil {
invalidParams . Add ( request . NewErrParamRequired ( "DestinationKeyId" ) )
}
if s . DestinationKeyId != nil && len ( * s . DestinationKeyId ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "DestinationKeyId" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetCiphertextBlob sets the CiphertextBlob field's value.
func ( s * ReEncryptInput ) SetCiphertextBlob ( v [ ] byte ) * ReEncryptInput {
s . CiphertextBlob = v
return s
}
// SetDestinationEncryptionContext sets the DestinationEncryptionContext field's value.
func ( s * ReEncryptInput ) SetDestinationEncryptionContext ( v map [ string ] * string ) * ReEncryptInput {
s . DestinationEncryptionContext = v
return s
}
// SetDestinationKeyId sets the DestinationKeyId field's value.
func ( s * ReEncryptInput ) SetDestinationKeyId ( v string ) * ReEncryptInput {
s . DestinationKeyId = & v
return s
}
// SetGrantTokens sets the GrantTokens field's value.
func ( s * ReEncryptInput ) SetGrantTokens ( v [ ] * string ) * ReEncryptInput {
s . GrantTokens = v
return s
}
// SetSourceEncryptionContext sets the SourceEncryptionContext field's value.
func ( s * ReEncryptInput ) SetSourceEncryptionContext ( v map [ string ] * string ) * ReEncryptInput {
s . SourceEncryptionContext = v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/ReEncryptResponse
2016-02-07 17:27:24 +01:00
type ReEncryptOutput struct {
_ struct { } ` type:"structure" `
2017-01-02 21:35:31 +01:00
// The reencrypted data.
2016-03-18 20:35:09 +01:00
//
// CiphertextBlob is automatically base64 encoded/decoded by the SDK.
2016-02-07 17:27:24 +01:00
CiphertextBlob [ ] byte ` min:"1" type:"blob" `
2017-01-02 21:35:31 +01:00
// Unique identifier of the CMK used to reencrypt the data.
2016-02-07 17:27:24 +01:00
KeyId * string ` min:"1" type:"string" `
2017-01-02 21:35:31 +01:00
// Unique identifier of the CMK used to originally encrypt the data.
2016-02-07 17:27:24 +01:00
SourceKeyId * string ` min:"1" type:"string" `
}
// String returns the string representation
func ( s ReEncryptOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ReEncryptOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetCiphertextBlob sets the CiphertextBlob field's value.
func ( s * ReEncryptOutput ) SetCiphertextBlob ( v [ ] byte ) * ReEncryptOutput {
s . CiphertextBlob = v
return s
}
// SetKeyId sets the KeyId field's value.
func ( s * ReEncryptOutput ) SetKeyId ( v string ) * ReEncryptOutput {
s . KeyId = & v
return s
}
// SetSourceKeyId sets the SourceKeyId field's value.
func ( s * ReEncryptOutput ) SetSourceKeyId ( v string ) * ReEncryptOutput {
s . SourceKeyId = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/RetireGrantRequest
2016-02-07 17:27:24 +01:00
type RetireGrantInput struct {
_ struct { } ` type:"structure" `
2017-01-02 21:35:31 +01:00
// Unique identifier of the grant to retire. The grant ID is returned in the
// response to a CreateGrant operation.
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * Grant ID Example - 0123456789012345678901234567890123456789012345678901234567890123
2016-02-07 17:27:24 +01:00
GrantId * string ` min:"1" type:"string" `
// Token that identifies the grant to be retired.
GrantToken * string ` min:"1" type:"string" `
2017-01-02 21:35:31 +01:00
// The Amazon Resource Name of the CMK associated with the grant. Example:
2016-07-15 15:49:02 +02:00
//
2017-01-02 21:35:31 +01:00
// * arn:aws:kms:us-east-2:444455556666:key/1234abcd-12ab-34cd-56ef-1234567890ab
2016-02-07 17:27:24 +01:00
KeyId * string ` min:"1" type:"string" `
}
// String returns the string representation
func ( s RetireGrantInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s RetireGrantInput ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * RetireGrantInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "RetireGrantInput" }
if s . GrantId != nil && len ( * s . GrantId ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "GrantId" , 1 ) )
}
if s . GrantToken != nil && len ( * s . GrantToken ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "GrantToken" , 1 ) )
}
if s . KeyId != nil && len ( * s . KeyId ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "KeyId" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetGrantId sets the GrantId field's value.
func ( s * RetireGrantInput ) SetGrantId ( v string ) * RetireGrantInput {
s . GrantId = & v
return s
}
// SetGrantToken sets the GrantToken field's value.
func ( s * RetireGrantInput ) SetGrantToken ( v string ) * RetireGrantInput {
s . GrantToken = & v
return s
}
// SetKeyId sets the KeyId field's value.
func ( s * RetireGrantInput ) SetKeyId ( v string ) * RetireGrantInput {
s . KeyId = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/RetireGrantOutput
2016-02-07 17:27:24 +01:00
type RetireGrantOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s RetireGrantOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s RetireGrantOutput ) GoString ( ) string {
return s . String ( )
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/RevokeGrantRequest
2016-02-07 17:27:24 +01:00
type RevokeGrantInput struct {
_ struct { } ` type:"structure" `
// Identifier of the grant to be revoked.
2016-10-17 23:21:08 +02:00
//
// GrantId is a required field
2016-02-07 17:27:24 +01:00
GrantId * string ` min:"1" type:"string" required:"true" `
// A unique identifier for the customer master key associated with the grant.
// This value can be a globally unique identifier or the fully specified ARN
2016-07-15 15:49:02 +02:00
// to a key.
//
2016-11-19 19:41:01 +01:00
// * Key ARN Example - arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012
2016-10-17 23:21:08 +02:00
//
// KeyId is a required field
2016-02-07 17:27:24 +01:00
KeyId * string ` min:"1" type:"string" required:"true" `
}
// String returns the string representation
func ( s RevokeGrantInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s RevokeGrantInput ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * RevokeGrantInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "RevokeGrantInput" }
if s . GrantId == nil {
invalidParams . Add ( request . NewErrParamRequired ( "GrantId" ) )
}
if s . GrantId != nil && len ( * s . GrantId ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "GrantId" , 1 ) )
}
if s . KeyId == nil {
invalidParams . Add ( request . NewErrParamRequired ( "KeyId" ) )
}
if s . KeyId != nil && len ( * s . KeyId ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "KeyId" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetGrantId sets the GrantId field's value.
func ( s * RevokeGrantInput ) SetGrantId ( v string ) * RevokeGrantInput {
s . GrantId = & v
return s
}
// SetKeyId sets the KeyId field's value.
func ( s * RevokeGrantInput ) SetKeyId ( v string ) * RevokeGrantInput {
s . KeyId = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/RevokeGrantOutput
2016-02-07 17:27:24 +01:00
type RevokeGrantOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s RevokeGrantOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s RevokeGrantOutput ) GoString ( ) string {
return s . String ( )
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/ScheduleKeyDeletionRequest
2016-02-07 17:27:24 +01:00
type ScheduleKeyDeletionInput struct {
_ struct { } ` type:"structure" `
// The unique identifier for the customer master key (CMK) to delete.
//
// To specify this value, use the unique key ID or the Amazon Resource Name
2016-07-15 15:49:02 +02:00
// (ARN) of the CMK. Examples:
//
2016-11-19 19:41:01 +01:00
// * Unique key ID: 1234abcd-12ab-34cd-56ef-1234567890ab
2016-02-07 17:27:24 +01:00
//
2017-01-02 21:35:31 +01:00
// * Key ARN: arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab
2016-02-07 17:27:24 +01:00
//
2016-11-19 19:41:01 +01:00
// To obtain the unique key ID and key ARN for a given CMK, use ListKeys or
// DescribeKey.
2016-10-17 23:21:08 +02:00
//
// KeyId is a required field
2016-02-07 17:27:24 +01:00
KeyId * string ` min:"1" type:"string" required:"true" `
// The waiting period, specified in number of days. After the waiting period
// ends, AWS KMS deletes the customer master key (CMK).
//
// This value is optional. If you include a value, it must be between 7 and
// 30, inclusive. If you do not include a value, it defaults to 30.
PendingWindowInDays * int64 ` min:"1" type:"integer" `
}
// String returns the string representation
func ( s ScheduleKeyDeletionInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ScheduleKeyDeletionInput ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * ScheduleKeyDeletionInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "ScheduleKeyDeletionInput" }
if s . KeyId == nil {
invalidParams . Add ( request . NewErrParamRequired ( "KeyId" ) )
}
if s . KeyId != nil && len ( * s . KeyId ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "KeyId" , 1 ) )
}
if s . PendingWindowInDays != nil && * s . PendingWindowInDays < 1 {
invalidParams . Add ( request . NewErrParamMinValue ( "PendingWindowInDays" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetKeyId sets the KeyId field's value.
func ( s * ScheduleKeyDeletionInput ) SetKeyId ( v string ) * ScheduleKeyDeletionInput {
s . KeyId = & v
return s
}
// SetPendingWindowInDays sets the PendingWindowInDays field's value.
func ( s * ScheduleKeyDeletionInput ) SetPendingWindowInDays ( v int64 ) * ScheduleKeyDeletionInput {
s . PendingWindowInDays = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/ScheduleKeyDeletionResponse
2016-02-07 17:27:24 +01:00
type ScheduleKeyDeletionOutput struct {
_ struct { } ` type:"structure" `
// The date and time after which AWS KMS deletes the customer master key (CMK).
DeletionDate * time . Time ` type:"timestamp" timestampFormat:"unix" `
// The unique identifier of the customer master key (CMK) for which deletion
// is scheduled.
KeyId * string ` min:"1" type:"string" `
}
// String returns the string representation
func ( s ScheduleKeyDeletionOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s ScheduleKeyDeletionOutput ) GoString ( ) string {
return s . String ( )
}
2016-11-19 19:41:01 +01:00
// SetDeletionDate sets the DeletionDate field's value.
func ( s * ScheduleKeyDeletionOutput ) SetDeletionDate ( v time . Time ) * ScheduleKeyDeletionOutput {
s . DeletionDate = & v
return s
}
// SetKeyId sets the KeyId field's value.
func ( s * ScheduleKeyDeletionOutput ) SetKeyId ( v string ) * ScheduleKeyDeletionOutput {
s . KeyId = & v
return s
}
2017-02-20 18:20:36 +01:00
// A key-value pair. A tag consists of a tag key and a tag value. Tag keys and
// tag values are both required, but tag values can be empty (null) strings.
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/Tag
type Tag struct {
_ struct { } ` type:"structure" `
// The key of the tag.
//
// TagKey is a required field
TagKey * string ` min:"1" type:"string" required:"true" `
// The value of the tag.
//
// TagValue is a required field
TagValue * string ` type:"string" required:"true" `
}
// String returns the string representation
func ( s Tag ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s Tag ) GoString ( ) string {
return s . String ( )
}
// Validate inspects the fields of the type to determine if they are valid.
func ( s * Tag ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "Tag" }
if s . TagKey == nil {
invalidParams . Add ( request . NewErrParamRequired ( "TagKey" ) )
}
if s . TagKey != nil && len ( * s . TagKey ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "TagKey" , 1 ) )
}
if s . TagValue == nil {
invalidParams . Add ( request . NewErrParamRequired ( "TagValue" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
// SetTagKey sets the TagKey field's value.
func ( s * Tag ) SetTagKey ( v string ) * Tag {
s . TagKey = & v
return s
}
// SetTagValue sets the TagValue field's value.
func ( s * Tag ) SetTagValue ( v string ) * Tag {
s . TagValue = & v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/TagResourceRequest
type TagResourceInput struct {
_ struct { } ` type:"structure" `
// A unique identifier for the CMK you are tagging. You can use the unique key
// ID or the Amazon Resource Name (ARN) of the CMK. Examples:
//
// * Unique key ID: 1234abcd-12ab-34cd-56ef-1234567890ab
//
// * Key ARN: arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab
//
// KeyId is a required field
KeyId * string ` min:"1" type:"string" required:"true" `
// One or more tags. Each tag consists of a tag key and a tag value.
//
// Tags is a required field
Tags [ ] * Tag ` type:"list" required:"true" `
}
// String returns the string representation
func ( s TagResourceInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s TagResourceInput ) GoString ( ) string {
return s . String ( )
}
// Validate inspects the fields of the type to determine if they are valid.
func ( s * TagResourceInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "TagResourceInput" }
if s . KeyId == nil {
invalidParams . Add ( request . NewErrParamRequired ( "KeyId" ) )
}
if s . KeyId != nil && len ( * s . KeyId ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "KeyId" , 1 ) )
}
if s . Tags == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Tags" ) )
}
if s . Tags != nil {
for i , v := range s . Tags {
if v == nil {
continue
}
if err := v . Validate ( ) ; err != nil {
invalidParams . AddNested ( fmt . Sprintf ( "%s[%v]" , "Tags" , i ) , err . ( request . ErrInvalidParams ) )
}
}
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
// SetKeyId sets the KeyId field's value.
func ( s * TagResourceInput ) SetKeyId ( v string ) * TagResourceInput {
s . KeyId = & v
return s
}
// SetTags sets the Tags field's value.
func ( s * TagResourceInput ) SetTags ( v [ ] * Tag ) * TagResourceInput {
s . Tags = v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/TagResourceOutput
type TagResourceOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s TagResourceOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s TagResourceOutput ) GoString ( ) string {
return s . String ( )
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/UntagResourceRequest
type UntagResourceInput struct {
_ struct { } ` type:"structure" `
// A unique identifier for the CMK from which you are removing tags. You can
// use the unique key ID or the Amazon Resource Name (ARN) of the CMK. Examples:
//
// * Unique key ID: 1234abcd-12ab-34cd-56ef-1234567890ab
//
// * Key ARN: arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab
//
// KeyId is a required field
KeyId * string ` min:"1" type:"string" required:"true" `
// One or more tag keys. Specify only the tag keys, not the tag values.
//
// TagKeys is a required field
TagKeys [ ] * string ` type:"list" required:"true" `
}
// String returns the string representation
func ( s UntagResourceInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s UntagResourceInput ) GoString ( ) string {
return s . String ( )
}
// Validate inspects the fields of the type to determine if they are valid.
func ( s * UntagResourceInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "UntagResourceInput" }
if s . KeyId == nil {
invalidParams . Add ( request . NewErrParamRequired ( "KeyId" ) )
}
if s . KeyId != nil && len ( * s . KeyId ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "KeyId" , 1 ) )
}
if s . TagKeys == nil {
invalidParams . Add ( request . NewErrParamRequired ( "TagKeys" ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
// SetKeyId sets the KeyId field's value.
func ( s * UntagResourceInput ) SetKeyId ( v string ) * UntagResourceInput {
s . KeyId = & v
return s
}
// SetTagKeys sets the TagKeys field's value.
func ( s * UntagResourceInput ) SetTagKeys ( v [ ] * string ) * UntagResourceInput {
s . TagKeys = v
return s
}
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/UntagResourceOutput
type UntagResourceOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s UntagResourceOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s UntagResourceOutput ) GoString ( ) string {
return s . String ( )
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/UpdateAliasRequest
2016-02-07 17:27:24 +01:00
type UpdateAliasInput struct {
_ struct { } ` type:"structure" `
// String that contains the name of the alias to be modified. The name must
// start with the word "alias" followed by a forward slash (alias/). Aliases
// that begin with "alias/aws" are reserved.
2016-10-17 23:21:08 +02:00
//
// AliasName is a required field
2016-02-07 17:27:24 +01:00
AliasName * string ` min:"1" type:"string" required:"true" `
// Unique identifier of the customer master key to be mapped to the alias. This
// value can be a globally unique identifier or the fully specified ARN of a
2016-07-15 15:49:02 +02:00
// key.
2016-02-07 17:27:24 +01:00
//
2016-11-19 19:41:01 +01:00
// * Key ARN Example - arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// You can call ListAliases to verify that the alias is mapped to the correct
2016-02-07 17:27:24 +01:00
// TargetKeyId.
2016-10-17 23:21:08 +02:00
//
// TargetKeyId is a required field
2016-02-07 17:27:24 +01:00
TargetKeyId * string ` min:"1" type:"string" required:"true" `
}
// String returns the string representation
func ( s UpdateAliasInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s UpdateAliasInput ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * UpdateAliasInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "UpdateAliasInput" }
if s . AliasName == nil {
invalidParams . Add ( request . NewErrParamRequired ( "AliasName" ) )
}
if s . AliasName != nil && len ( * s . AliasName ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "AliasName" , 1 ) )
}
if s . TargetKeyId == nil {
invalidParams . Add ( request . NewErrParamRequired ( "TargetKeyId" ) )
}
if s . TargetKeyId != nil && len ( * s . TargetKeyId ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "TargetKeyId" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetAliasName sets the AliasName field's value.
func ( s * UpdateAliasInput ) SetAliasName ( v string ) * UpdateAliasInput {
s . AliasName = & v
return s
}
// SetTargetKeyId sets the TargetKeyId field's value.
func ( s * UpdateAliasInput ) SetTargetKeyId ( v string ) * UpdateAliasInput {
s . TargetKeyId = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/UpdateAliasOutput
2016-02-07 17:27:24 +01:00
type UpdateAliasOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s UpdateAliasOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s UpdateAliasOutput ) GoString ( ) string {
return s . String ( )
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/UpdateKeyDescriptionRequest
2016-02-07 17:27:24 +01:00
type UpdateKeyDescriptionInput struct {
_ struct { } ` type:"structure" `
2017-01-02 21:35:31 +01:00
// New description for the CMK.
2016-10-17 23:21:08 +02:00
//
// Description is a required field
2016-02-07 17:27:24 +01:00
Description * string ` type:"string" required:"true" `
2017-01-02 21:35:31 +01:00
// A unique identifier for the CMK. This value can be a globally unique identifier
// or the fully specified ARN to a key.
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * Key ARN Example - arn:aws:kms:us-east-1:123456789012:key/12345678-1234-1234-1234-123456789012
2016-07-15 15:49:02 +02:00
//
2016-11-19 19:41:01 +01:00
// * Globally Unique Key ID Example - 12345678-1234-1234-1234-123456789012
2016-10-17 23:21:08 +02:00
//
// KeyId is a required field
2016-02-07 17:27:24 +01:00
KeyId * string ` min:"1" type:"string" required:"true" `
}
// String returns the string representation
func ( s UpdateKeyDescriptionInput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s UpdateKeyDescriptionInput ) GoString ( ) string {
return s . String ( )
}
2016-05-05 03:06:27 +02:00
// Validate inspects the fields of the type to determine if they are valid.
func ( s * UpdateKeyDescriptionInput ) Validate ( ) error {
invalidParams := request . ErrInvalidParams { Context : "UpdateKeyDescriptionInput" }
if s . Description == nil {
invalidParams . Add ( request . NewErrParamRequired ( "Description" ) )
}
if s . KeyId == nil {
invalidParams . Add ( request . NewErrParamRequired ( "KeyId" ) )
}
if s . KeyId != nil && len ( * s . KeyId ) < 1 {
invalidParams . Add ( request . NewErrParamMinLen ( "KeyId" , 1 ) )
}
if invalidParams . Len ( ) > 0 {
return invalidParams
}
return nil
}
2016-11-19 19:41:01 +01:00
// SetDescription sets the Description field's value.
func ( s * UpdateKeyDescriptionInput ) SetDescription ( v string ) * UpdateKeyDescriptionInput {
s . Description = & v
return s
}
// SetKeyId sets the KeyId field's value.
func ( s * UpdateKeyDescriptionInput ) SetKeyId ( v string ) * UpdateKeyDescriptionInput {
s . KeyId = & v
return s
}
2017-01-02 21:35:31 +01:00
// Please also see https://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/UpdateKeyDescriptionOutput
2016-02-07 17:27:24 +01:00
type UpdateKeyDescriptionOutput struct {
_ struct { } ` type:"structure" `
}
// String returns the string representation
func ( s UpdateKeyDescriptionOutput ) String ( ) string {
return awsutil . Prettify ( s )
}
// GoString returns the string representation
func ( s UpdateKeyDescriptionOutput ) GoString ( ) string {
return s . String ( )
}
2016-08-11 19:01:51 +02:00
const (
2016-10-17 23:21:08 +02:00
// AlgorithmSpecRsaesPkcs1V15 is a AlgorithmSpec enum value
2016-08-11 19:01:51 +02:00
AlgorithmSpecRsaesPkcs1V15 = "RSAES_PKCS1_V1_5"
2016-10-17 23:21:08 +02:00
// AlgorithmSpecRsaesOaepSha1 is a AlgorithmSpec enum value
2016-08-11 19:01:51 +02:00
AlgorithmSpecRsaesOaepSha1 = "RSAES_OAEP_SHA_1"
2016-10-17 23:21:08 +02:00
// AlgorithmSpecRsaesOaepSha256 is a AlgorithmSpec enum value
2016-08-11 19:01:51 +02:00
AlgorithmSpecRsaesOaepSha256 = "RSAES_OAEP_SHA_256"
)
2016-02-07 17:27:24 +01:00
const (
2016-10-17 23:21:08 +02:00
// DataKeySpecAes256 is a DataKeySpec enum value
2016-02-07 17:27:24 +01:00
DataKeySpecAes256 = "AES_256"
2016-10-17 23:21:08 +02:00
// DataKeySpecAes128 is a DataKeySpec enum value
2016-02-07 17:27:24 +01:00
DataKeySpecAes128 = "AES_128"
)
2016-08-11 19:01:51 +02:00
const (
2016-10-17 23:21:08 +02:00
// ExpirationModelTypeKeyMaterialExpires is a ExpirationModelType enum value
2016-08-11 19:01:51 +02:00
ExpirationModelTypeKeyMaterialExpires = "KEY_MATERIAL_EXPIRES"
2016-10-17 23:21:08 +02:00
// ExpirationModelTypeKeyMaterialDoesNotExpire is a ExpirationModelType enum value
2016-08-11 19:01:51 +02:00
ExpirationModelTypeKeyMaterialDoesNotExpire = "KEY_MATERIAL_DOES_NOT_EXPIRE"
)
2016-02-07 17:27:24 +01:00
const (
2016-10-17 23:21:08 +02:00
// GrantOperationDecrypt is a GrantOperation enum value
2016-02-07 17:27:24 +01:00
GrantOperationDecrypt = "Decrypt"
2016-10-17 23:21:08 +02:00
// GrantOperationEncrypt is a GrantOperation enum value
2016-02-07 17:27:24 +01:00
GrantOperationEncrypt = "Encrypt"
2016-10-17 23:21:08 +02:00
// GrantOperationGenerateDataKey is a GrantOperation enum value
2016-02-07 17:27:24 +01:00
GrantOperationGenerateDataKey = "GenerateDataKey"
2016-10-17 23:21:08 +02:00
// GrantOperationGenerateDataKeyWithoutPlaintext is a GrantOperation enum value
2016-02-07 17:27:24 +01:00
GrantOperationGenerateDataKeyWithoutPlaintext = "GenerateDataKeyWithoutPlaintext"
2016-10-17 23:21:08 +02:00
// GrantOperationReEncryptFrom is a GrantOperation enum value
2016-02-07 17:27:24 +01:00
GrantOperationReEncryptFrom = "ReEncryptFrom"
2016-10-17 23:21:08 +02:00
// GrantOperationReEncryptTo is a GrantOperation enum value
2016-02-07 17:27:24 +01:00
GrantOperationReEncryptTo = "ReEncryptTo"
2016-10-17 23:21:08 +02:00
// GrantOperationCreateGrant is a GrantOperation enum value
2016-02-07 17:27:24 +01:00
GrantOperationCreateGrant = "CreateGrant"
2016-10-17 23:21:08 +02:00
// GrantOperationRetireGrant is a GrantOperation enum value
2016-02-07 17:27:24 +01:00
GrantOperationRetireGrant = "RetireGrant"
2016-10-17 23:21:08 +02:00
// GrantOperationDescribeKey is a GrantOperation enum value
2016-02-07 17:27:24 +01:00
GrantOperationDescribeKey = "DescribeKey"
)
const (
2016-10-17 23:21:08 +02:00
// KeyStateEnabled is a KeyState enum value
2016-02-07 17:27:24 +01:00
KeyStateEnabled = "Enabled"
2016-10-17 23:21:08 +02:00
// KeyStateDisabled is a KeyState enum value
2016-02-07 17:27:24 +01:00
KeyStateDisabled = "Disabled"
2016-10-17 23:21:08 +02:00
// KeyStatePendingDeletion is a KeyState enum value
2016-02-07 17:27:24 +01:00
KeyStatePendingDeletion = "PendingDeletion"
2016-10-17 23:21:08 +02:00
// KeyStatePendingImport is a KeyState enum value
2016-08-11 19:01:51 +02:00
KeyStatePendingImport = "PendingImport"
2016-02-07 17:27:24 +01:00
)
const (
2016-10-17 23:21:08 +02:00
// KeyUsageTypeEncryptDecrypt is a KeyUsageType enum value
2016-02-07 17:27:24 +01:00
KeyUsageTypeEncryptDecrypt = "ENCRYPT_DECRYPT"
)
2016-08-11 19:01:51 +02:00
const (
2016-10-17 23:21:08 +02:00
// OriginTypeAwsKms is a OriginType enum value
2016-08-11 19:01:51 +02:00
OriginTypeAwsKms = "AWS_KMS"
2016-10-17 23:21:08 +02:00
// OriginTypeExternal is a OriginType enum value
2016-08-11 19:01:51 +02:00
OriginTypeExternal = "EXTERNAL"
)
const (
2016-10-17 23:21:08 +02:00
// WrappingKeySpecRsa2048 is a WrappingKeySpec enum value
2016-08-11 19:01:51 +02:00
WrappingKeySpecRsa2048 = "RSA_2048"
)