Class: Aws::CloudFront::Types::Signer

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#aws_account_numberString

An AWS account that is included in the ‘TrustedSigners` complex type for this RTMP distribution. Valid values include:

  • ‘self`, which is the AWS account used to create the distribution.

  • An AWS account number.

Returns:

  • (String)


6288
6289
6290
6291
6292
# File 'lib/aws-sdk-cloudfront/types.rb', line 6288

class Signer < Struct.new(
  :aws_account_number,
  :key_pair_ids)
  include Aws::Structure
end

#key_pair_idsTypes::KeyPairIds

A complex type that lists the active CloudFront key pairs, if any, that are associated with ‘AwsAccountNumber`.

Returns:



6288
6289
6290
6291
6292
# File 'lib/aws-sdk-cloudfront/types.rb', line 6288

class Signer < Struct.new(
  :aws_account_number,
  :key_pair_ids)
  include Aws::Structure
end