Class: Aws::IVS::Types::S3DestinationConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::IVS::Types::S3DestinationConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ivs/types.rb
Overview
Note:
When making an API call, you may pass S3DestinationConfiguration data as a hash:
{
bucket_name: "S3DestinationBucketName", # required
}
A complex type that describes an S3 location where recorded videos will be stored.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket_name ⇒ String
Location (S3 bucket name) where recorded videos will be stored.
Instance Attribute Details
#bucket_name ⇒ String
Location (S3 bucket name) where recorded videos will be stored.
1470 1471 1472 1473 1474 |
# File 'lib/aws-sdk-ivs/types.rb', line 1470 class S3DestinationConfiguration < Struct.new( :bucket_name) SENSITIVE = [] include Aws::Structure end |