public static interface Container.Builder extends SdkPojo, CopyableBuilder<Container.Builder,Container>
Modifier and Type | Method and Description |
---|---|
Container.Builder |
arn(String arn)
The Amazon Resource Name (ARN) of the container.
|
Container.Builder |
creationTime(Instant creationTime)
Unix timestamp.
|
Container.Builder |
endpoint(String endpoint)
The DNS endpoint of the container.
|
Container.Builder |
name(String name)
The name of the container.
|
Container.Builder |
status(ContainerStatus status)
The status of container creation or deletion.
|
Container.Builder |
status(String status)
The status of container creation or deletion.
|
copy
applyMutation, build
Container.Builder endpoint(String endpoint)
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.
endpoint
- 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.Container.Builder creationTime(Instant creationTime)
Unix timestamp.
creationTime
- Unix timestamp.Container.Builder arn(String arn)
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
arn
- 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
Container.Builder name(String name)
The name of the container.
name
- The name of the container.Container.Builder status(String status)
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
.
status
- 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
.ContainerStatus
,
ContainerStatus
Container.Builder status(ContainerStatus status)
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
.
status
- 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
.ContainerStatus
,
ContainerStatus
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.