Class: Aws::CloudFront::Types::EncryptionEntity
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFront::Types::EncryptionEntity
- Defined in:
- gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb
Overview
Complex data type for field-level encryption profiles that includes the encryption key and field pattern specifications.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#field_patterns ⇒ Types::FieldPatterns
Field patterns in a field-level encryption content type profile specify the fields that you want to be encrypted.
-
#provider_id ⇒ String
The provider associated with the public key being used for encryption.
-
#public_key_id ⇒ String
The public key associated with a set of field-level encryption patterns, to be used when encrypting the fields that match the patterns.
Instance Attribute Details
#field_patterns ⇒ Types::FieldPatterns
Field patterns in a field-level encryption content type profile specify the fields that you want to be encrypted. You can provide the full field name, or any beginning characters followed by a wildcard (). You can't overlap field patterns. For example, you can't have both ABC and AB*. Note that field patterns are case-sensitive.
5546 5547 5548 5549 5550 5551 5552 |
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 5546 class EncryptionEntity < Struct.new( :public_key_id, :provider_id, :field_patterns) SENSITIVE = [] include Aws::Structure end |
#provider_id ⇒ String
The provider associated with the public key being used for encryption. This value must also be provided with the private key for applications to be able to decrypt data.
5546 5547 5548 5549 5550 5551 5552 |
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 5546 class EncryptionEntity < Struct.new( :public_key_id, :provider_id, :field_patterns) SENSITIVE = [] include Aws::Structure end |
#public_key_id ⇒ String
The public key associated with a set of field-level encryption patterns, to be used when encrypting the fields that match the patterns.
5546 5547 5548 5549 5550 5551 5552 |
# File 'gems/aws-sdk-cloudfront/lib/aws-sdk-cloudfront/types.rb', line 5546 class EncryptionEntity < Struct.new( :public_key_id, :provider_id, :field_patterns) SENSITIVE = [] include Aws::Structure end |