Class: Aws::CloudFront::Types::KeyGroupConfig
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::CloudFront::Types::KeyGroupConfig
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudfront/types.rb
Overview
A key group configuration.
A key group contains a list of public keys that you can use with [CloudFront signed URLs and signed cookies].
[1]: docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/PrivateContent.html
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #comment  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A comment to describe the key group. 
- 
  
    
      #items  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A list of the identifiers of the public keys in the key group. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A name to identify the key group. 
Instance Attribute Details
#comment ⇒ String
A comment to describe the key group. The comment cannot be longer than 128 characters.
| 6573 6574 6575 6576 6577 6578 6579 | # File 'lib/aws-sdk-cloudfront/types.rb', line 6573 class KeyGroupConfig < Struct.new( :name, :items, :comment) SENSITIVE = [] include Aws::Structure end | 
#items ⇒ Array<String>
A list of the identifiers of the public keys in the key group.
| 6573 6574 6575 6576 6577 6578 6579 | # File 'lib/aws-sdk-cloudfront/types.rb', line 6573 class KeyGroupConfig < Struct.new( :name, :items, :comment) SENSITIVE = [] include Aws::Structure end | 
#name ⇒ String
A name to identify the key group.
| 6573 6574 6575 6576 6577 6578 6579 | # File 'lib/aws-sdk-cloudfront/types.rb', line 6573 class KeyGroupConfig < Struct.new( :name, :items, :comment) SENSITIVE = [] include Aws::Structure end |