Class: Aws::CloudFront::Types::FieldLevelEncryptionConfig

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

{
  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
        },
      ],
    },
  },
}

A complex data type that includes the profile configurations specified for field-level encryption.

Instance Attribute Summary collapse

Instance Attribute Details

#caller_referenceString

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

Returns:

  • (String)


3692
3693
3694
3695
3696
3697
3698
# File 'lib/aws-sdk-cloudfront/types.rb', line 3692

class FieldLevelEncryptionConfig < Struct.new(
  :caller_reference,
  :comment,
  :query_arg_profile_config,
  :content_type_profile_config)
  include Aws::Structure
end

#commentString

An optional comment about the configuration.

Returns:

  • (String)


3692
3693
3694
3695
3696
3697
3698
# File 'lib/aws-sdk-cloudfront/types.rb', line 3692

class FieldLevelEncryptionConfig < Struct.new(
  :caller_reference,
  :comment,
  :query_arg_profile_config,
  :content_type_profile_config)
  include Aws::Structure
end

#content_type_profile_configTypes::ContentTypeProfileConfig

A complex data type that specifies when to forward content if a content type isn’t recognized and profiles to use as by default in a request if a query argument doesn’t specify a profile to use.



3692
3693
3694
3695
3696
3697
3698
# File 'lib/aws-sdk-cloudfront/types.rb', line 3692

class FieldLevelEncryptionConfig < Struct.new(
  :caller_reference,
  :comment,
  :query_arg_profile_config,
  :content_type_profile_config)
  include Aws::Structure
end

#query_arg_profile_configTypes::QueryArgProfileConfig

A complex data type that specifies when to forward content if a profile isn’t found and the profile that can be provided as a query argument in a request.



3692
3693
3694
3695
3696
3697
3698
# File 'lib/aws-sdk-cloudfront/types.rb', line 3692

class FieldLevelEncryptionConfig < Struct.new(
  :caller_reference,
  :comment,
  :query_arg_profile_config,
  :content_type_profile_config)
  include Aws::Structure
end