Class: Aws::IVS::Types::RecordingConfigurationSummary
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::IVS::Types::RecordingConfigurationSummary
 
- Defined in:
- gems/aws-sdk-ivs/lib/aws-sdk-ivs/types.rb
Overview
Summary information about a RecordingConfiguration.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Recording-configuration ARN. 
- 
  
    
      #destination_configuration  ⇒ Types::DestinationConfiguration 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A complex type that contains information about where recorded video will be stored. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Recording-configuration name. 
- 
  
    
      #state  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Indicates the current state of the recording configuration. 
- 
  
    
      #tags  ⇒ Hash<String,String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Tags attached to the resource. 
Instance Attribute Details
#arn ⇒ String
Recording-configuration ARN.
| 1778 1779 1780 1781 1782 1783 1784 1785 1786 | # File 'gems/aws-sdk-ivs/lib/aws-sdk-ivs/types.rb', line 1778 class RecordingConfigurationSummary < Struct.new( :arn, :destination_configuration, :name, :state, :tags) SENSITIVE = [] include Aws::Structure end | 
#destination_configuration ⇒ Types::DestinationConfiguration
A complex type that contains information about where recorded video will be stored.
| 1778 1779 1780 1781 1782 1783 1784 1785 1786 | # File 'gems/aws-sdk-ivs/lib/aws-sdk-ivs/types.rb', line 1778 class RecordingConfigurationSummary < Struct.new( :arn, :destination_configuration, :name, :state, :tags) SENSITIVE = [] include Aws::Structure end | 
#name ⇒ String
Recording-configuration name. The value does not need to be unique.
| 1778 1779 1780 1781 1782 1783 1784 1785 1786 | # File 'gems/aws-sdk-ivs/lib/aws-sdk-ivs/types.rb', line 1778 class RecordingConfigurationSummary < Struct.new( :arn, :destination_configuration, :name, :state, :tags) SENSITIVE = [] include Aws::Structure end | 
#state ⇒ String
Indicates the current state of the recording configuration. When the
state is ACTIVE, the configuration is ready for recording a
channel stream.
| 1778 1779 1780 1781 1782 1783 1784 1785 1786 | # File 'gems/aws-sdk-ivs/lib/aws-sdk-ivs/types.rb', line 1778 class RecordingConfigurationSummary < Struct.new( :arn, :destination_configuration, :name, :state, :tags) SENSITIVE = [] include Aws::Structure end | 
#tags ⇒ Hash<String,String>
Tags attached to the resource. Array of 1-50 maps, each of the form
string:string (key:value). See Best practices and strategies
in Tagging Amazon Web Services Resources and Tag Editor for
details, including restrictions that apply to tags and "Tag naming
limits and requirements"; Amazon IVS has no service-specific
constraints beyond what is documented there.
| 1778 1779 1780 1781 1782 1783 1784 1785 1786 | # File 'gems/aws-sdk-ivs/lib/aws-sdk-ivs/types.rb', line 1778 class RecordingConfigurationSummary < Struct.new( :arn, :destination_configuration, :name, :state, :tags) SENSITIVE = [] include Aws::Structure end |