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.
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.
3761 3762 3763 3764 3765 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 3761 class EncryptionEntities < Struct.new( :quantity, :items) include Aws::Structure end |
#quantity ⇒ Integer
Number of field pattern items in a field-level encryption content type-profile mapping.
3761 3762 3763 3764 3765 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 3761 class EncryptionEntities < Struct.new( :quantity, :items) include Aws::Structure end |