Class: Aws::CloudFront::Types::UpdateFieldLevelEncryptionProfileRequest

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 UpdateFieldLevelEncryptionProfileRequest data as a hash:

{
  field_level_encryption_profile_config: { # required
    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"],
          },
        },
      ],
    },
  },
  id: "string", # required
  if_match: "string",
}

Instance Attribute Summary collapse

Instance Attribute Details

#field_level_encryption_profile_configTypes::FieldLevelEncryptionProfileConfig

Request to update a field-level encryption profile.



7350
7351
7352
7353
7354
7355
# File 'lib/aws-sdk-cloudfront/types.rb', line 7350

class UpdateFieldLevelEncryptionProfileRequest < Struct.new(
  :field_level_encryption_profile_config,
  :id,
  :if_match)
  include Aws::Structure
end

#idString

The ID of the field-level encryption profile request.

Returns:

  • (String)


7350
7351
7352
7353
7354
7355
# File 'lib/aws-sdk-cloudfront/types.rb', line 7350

class UpdateFieldLevelEncryptionProfileRequest < Struct.new(
  :field_level_encryption_profile_config,
  :id,
  :if_match)
  include Aws::Structure
end

#if_matchString

The value of the ‘ETag` header that you received when retrieving the profile identity to update. For example: `E2QWRUHAPOMQZL`.

Returns:

  • (String)


7350
7351
7352
7353
7354
7355
# File 'lib/aws-sdk-cloudfront/types.rb', line 7350

class UpdateFieldLevelEncryptionProfileRequest < Struct.new(
  :field_level_encryption_profile_config,
  :id,
  :if_match)
  include Aws::Structure
end