Class: Aws::MediaStore::Types::CreateContainerInput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-mediastore/types.rb

Overview

Note:

When making an API call, you may pass CreateContainerInput data as a hash:

{
  container_name: "ContainerName", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#container_nameString

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.

Returns:

  • (String)


145
146
147
148
# File 'lib/aws-sdk-mediastore/types.rb', line 145

class CreateContainerInput < Struct.new(
  :container_name)
  include Aws::Structure
end