Class: Aws::CodePipeline::Types::EncryptionKey

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-codepipeline/types.rb

Overview

Note:

When making an API call, you may pass EncryptionKey data as a hash:

{
  id: "EncryptionKeyId", # required
  type: "KMS", # required, accepts KMS
}

Represents information about the key used to encrypt data in the artifact store, such as an AWS Key Management Service (AWS KMS) key.

Instance Attribute Summary collapse

Instance Attribute Details

#idString

The ID used to identify the key. For an AWS KMS key, this is the key ID or key ARN.

Returns:

  • (String)


1228
1229
1230
1231
1232
# File 'lib/aws-sdk-codepipeline/types.rb', line 1228

class EncryptionKey < Struct.new(
  :id,
  :type)
  include Aws::Structure
end

#typeString

The type of encryption key, such as an AWS Key Management Service (AWS KMS) key. When creating or updating a pipeline, the value must be set to ‘KMS’.

Returns:

  • (String)


1228
1229
1230
1231
1232
# File 'lib/aws-sdk-codepipeline/types.rb', line 1228

class EncryptionKey < Struct.new(
  :id,
  :type)
  include Aws::Structure
end