Class: Aws::CloudFront::Types::CreateFieldLevelEncryptionConfigRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFront::Types::CreateFieldLevelEncryptionConfigRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudfront/types.rb
Overview
Note:
When making an API call, you may pass CreateFieldLevelEncryptionConfigRequest 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
},
],
},
},
},
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#field_level_encryption_config ⇒ Types::FieldLevelEncryptionConfig
The request to create a new field-level encryption configuration.
Instance Attribute Details
#field_level_encryption_config ⇒ Types::FieldLevelEncryptionConfig
The request to create a new field-level encryption configuration.
2455 2456 2457 2458 2459 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 2455 class CreateFieldLevelEncryptionConfigRequest < Struct.new( :field_level_encryption_config) SENSITIVE = [] include Aws::Structure end |