Class: Aws::CloudFront::Types::UpdateFieldLevelEncryptionConfigRequest

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

{
  field_level_encryption_config: { # required
    caller_reference: "string", # required
    comment: "string",
    query_arg_profile_config: {
      forward_when_query_arg_profile_is_unknown: false, # required
      query_arg_profiles: {
        quantity: 1, # required
        items: [
          {
            query_arg: "string", # required
            profile_id: "string", # required
          },
        ],
      },
    },
    content_type_profile_config: {
      forward_when_content_type_is_unknown: false, # required
      content_type_profiles: {
        quantity: 1, # required
        items: [
          {
            format: "URLEncoded", # required, accepts URLEncoded
            profile_id: "string",
            content_type: "string", # required
          },
        ],
      },
    },
  },
  id: "string", # required
  if_match: "string",
}

Instance Attribute Summary collapse

Instance Attribute Details

#field_level_encryption_configTypes::FieldLevelEncryptionConfig

Request to update a field-level encryption configuration.



7285
7286
7287
7288
7289
7290
# File 'lib/aws-sdk-cloudfront/types.rb', line 7285

class UpdateFieldLevelEncryptionConfigRequest < Struct.new(
  :field_level_encryption_config,
  :id,
  :if_match)
  include Aws::Structure
end

#idString

The ID of the configuration you want to update.

Returns:

  • (String)


7285
7286
7287
7288
7289
7290
# File 'lib/aws-sdk-cloudfront/types.rb', line 7285

class UpdateFieldLevelEncryptionConfigRequest < Struct.new(
  :field_level_encryption_config,
  :id,
  :if_match)
  include Aws::Structure
end

#if_matchString

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

Returns:

  • (String)


7285
7286
7287
7288
7289
7290
# File 'lib/aws-sdk-cloudfront/types.rb', line 7285

class UpdateFieldLevelEncryptionConfigRequest < Struct.new(
  :field_level_encryption_config,
  :id,
  :if_match)
  include Aws::Structure
end