Class: Aws::MediaStore::Types::CreateContainerInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaStore::Types::CreateContainerInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mediastore/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#container_name ⇒ String
The name for the container.
-
#tags ⇒ Array<Types::Tag>
An array of key:value pairs that you define.
Instance Attribute Details
#container_name ⇒ String
The name for the container. The name must be from 1 to 255 characters. Container names must be unique to your AWS account within a specific region. As an example, you could create a container named ‘movies` in every region, as long as you don’t have an existing container with that name.
195 196 197 198 199 200 |
# File 'lib/aws-sdk-mediastore/types.rb', line 195 class CreateContainerInput < Struct.new( :container_name, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
An array of key:value pairs that you define. These values can be anything that you want. Typically, the tag key represents a category (such as “environment”) and the tag value represents a specific value within that category (such as “test,” “development,” or “production”). You can add up to 50 tags to each container. For more information about tagging, including naming and usage conventions, see [Tagging Resources in MediaStore].
195 196 197 198 199 200 |
# File 'lib/aws-sdk-mediastore/types.rb', line 195 class CreateContainerInput < Struct.new( :container_name, :tags) SENSITIVE = [] include Aws::Structure end |