Class: Aws::IVS::Types::DestinationConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::IVS::Types::DestinationConfiguration
- Defined in:
- gems/aws-sdk-ivs/lib/aws-sdk-ivs/types.rb
Overview
Note:
When making an API call, you may pass DestinationConfiguration data as a hash:
{
s3: {
bucket_name: "S3DestinationBucketName", # required
},
}
A complex type that describes a location where recorded videos will be stored. Each member represents a type of destination configuration. For recording, you define one and only one type of destination configuration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3 ⇒ Types::S3DestinationConfiguration
An S3 destination configuration where recorded videos will be stored.
Instance Attribute Details
#s3 ⇒ Types::S3DestinationConfiguration
An S3 destination configuration where recorded videos will be stored.
578 579 580 581 582 |
# File 'gems/aws-sdk-ivs/lib/aws-sdk-ivs/types.rb', line 578 class DestinationConfiguration < Struct.new( :s3) SENSITIVE = [] include Aws::Structure end |