Class: Aws::CloudFront::Types::FieldLevelEncryptionProfileConfig

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

Overview

Note:

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

{
  name: "string", # required
  caller_reference: "string", # required
  comment: "string",
  encryption_entities: { # required
    quantity: 1, # required
    items: [
      {
        public_key_id: "string", # required
        provider_id: "string", # required
        field_patterns: { # required
          quantity: 1, # required
          items: ["string"],
        },
      },
    ],
  },
}

A complex data type of profiles for the field-level encryption.

Instance Attribute Summary collapse

Instance Attribute Details

#caller_referenceString

A unique number that ensures that the request can’t be replayed.

Returns:

  • (String)


3801
3802
3803
3804
3805
3806
3807
# File 'lib/aws-sdk-cloudfront/types.rb', line 3801

class FieldLevelEncryptionProfileConfig < Struct.new(
  :name,
  :caller_reference,
  :comment,
  :encryption_entities)
  include Aws::Structure
end

#commentString

An optional comment for the field-level encryption profile.

Returns:

  • (String)


3801
3802
3803
3804
3805
3806
3807
# File 'lib/aws-sdk-cloudfront/types.rb', line 3801

class FieldLevelEncryptionProfileConfig < Struct.new(
  :name,
  :caller_reference,
  :comment,
  :encryption_entities)
  include Aws::Structure
end

#encryption_entitiesTypes::EncryptionEntities

A complex data type of encryption entities for the field-level encryption profile that include the public key ID, provider, and field patterns for specifying which fields to encrypt with this key.



3801
3802
3803
3804
3805
3806
3807
# File 'lib/aws-sdk-cloudfront/types.rb', line 3801

class FieldLevelEncryptionProfileConfig < Struct.new(
  :name,
  :caller_reference,
  :comment,
  :encryption_entities)
  include Aws::Structure
end

#nameString

Profile name for the field-level encryption profile.

Returns:

  • (String)


3801
3802
3803
3804
3805
3806
3807
# File 'lib/aws-sdk-cloudfront/types.rb', line 3801

class FieldLevelEncryptionProfileConfig < Struct.new(
  :name,
  :caller_reference,
  :comment,
  :encryption_entities)
  include Aws::Structure
end