Class: Aws::CloudFront::Types::Signer
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFront::Types::Signer
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudfront/types.rb
Overview
A complex type that lists the AWS accounts that were included in the ‘TrustedSigners` complex type, as well as their active CloudFront key pair IDs, if any.
Instance Attribute Summary collapse
-
#aws_account_number ⇒ String
An AWS account that is included in the ‘TrustedSigners` complex type for this distribution.
-
#key_pair_ids ⇒ Types::KeyPairIds
A complex type that lists the active CloudFront key pairs, if any, that are associated with ‘AwsAccountNumber`.
Instance Attribute Details
#aws_account_number ⇒ String
An AWS account that is included in the ‘TrustedSigners` complex type for this distribution. Valid values include:
-
‘self`, which is the AWS account used to create the distribution.
-
An AWS account number.
7079 7080 7081 7082 7083 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 7079 class Signer < Struct.new( :aws_account_number, :key_pair_ids) include Aws::Structure end |
#key_pair_ids ⇒ Types::KeyPairIds
A complex type that lists the active CloudFront key pairs, if any, that are associated with ‘AwsAccountNumber`.
7079 7080 7081 7082 7083 |
# File 'lib/aws-sdk-cloudfront/types.rb', line 7079 class Signer < Struct.new( :aws_account_number, :key_pair_ids) include Aws::Structure end |