Class: Aws::MediaStore::Types::Container

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

Overview

This section describes operations that you can perform on an AWS Elemental MediaStore container.

Instance Attribute Summary collapse

Instance Attribute Details

#arnString

The Amazon Resource Name (ARN) of the container. The ARN has the following format:

arn:aws:<region>:<account that owns this container>:container/<name of container>

For example: arn:aws:mediastore:us-west-2:111122223333:container/movies

Returns:

  • (String)


49
50
51
52
53
54
55
56
# File 'lib/aws-sdk-mediastore/types.rb', line 49

class Container < Struct.new(
  :endpoint,
  :creation_time,
  :arn,
  :name,
  :status)
  include Aws::Structure
end

#creation_timeTime

Unix timestamp.

Returns:

  • (Time)


49
50
51
52
53
54
55
56
# File 'lib/aws-sdk-mediastore/types.rb', line 49

class Container < Struct.new(
  :endpoint,
  :creation_time,
  :arn,
  :name,
  :status)
  include Aws::Structure
end

#endpointString

The DNS endpoint of the container. Use the endpoint to identify the specific container when sending requests to the data plane. The service assigns this value when the container is created. Once the value has been assigned, it does not change.

Returns:

  • (String)


49
50
51
52
53
54
55
56
# File 'lib/aws-sdk-mediastore/types.rb', line 49

class Container < Struct.new(
  :endpoint,
  :creation_time,
  :arn,
  :name,
  :status)
  include Aws::Structure
end

#nameString

The name of the container.

Returns:

  • (String)


49
50
51
52
53
54
55
56
# File 'lib/aws-sdk-mediastore/types.rb', line 49

class Container < Struct.new(
  :endpoint,
  :creation_time,
  :arn,
  :name,
  :status)
  include Aws::Structure
end

#statusString

The status of container creation or deletion. The status is one of the following: ‘CREATING`, `ACTIVE`, or `DELETING`. While the service is creating the container, the status is `CREATING`. When the endpoint is available, the status changes to `ACTIVE`.

Returns:

  • (String)


49
50
51
52
53
54
55
56
# File 'lib/aws-sdk-mediastore/types.rb', line 49

class Container < Struct.new(
  :endpoint,
  :creation_time,
  :arn,
  :name,
  :status)
  include Aws::Structure
end