Class: Aws::CloudFront::Types::EncryptionEntities
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFront::Types::EncryptionEntities
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudfront/types.rb
Overview
Note:
When making an API call, you may pass EncryptionEntities data as a hash:
{
quantity: 1, # required
items: [
{
public_key_id: "string", # required
provider_id: "string", # required
field_patterns: { # required
quantity: 1, # required
items: ["string"],
},
},
],
}
Complex data type for field-level encryption profiles that includes all of the encryption entities.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#items ⇒ Array<Types::EncryptionEntity>
An array of field patterns in a field-level encryption content type-profile mapping.
-
#quantity ⇒ Integer
Number of field pattern items in a field-level encryption content type-profile mapping.
Instance Attribute Details
#items ⇒ Array<Types::EncryptionEntity>
An array of field patterns in a field-level encryption content type-profile mapping.
5323 5324 5325 5326 5327 5328 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 5323 class EncryptionEntities < Struct.new( :quantity, :items) SENSITIVE = [] include Aws::Structure end |
#quantity ⇒ Integer
Number of field pattern items in a field-level encryption content type-profile mapping.
5323 5324 5325 5326 5327 5328 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 5323 class EncryptionEntities < Struct.new( :quantity, :items) SENSITIVE = [] include Aws::Structure end |