@ThreadSafe @Generated(value="com.amazonaws:aws-java-sdk-code-generator") public class AWSMediaStoreClient extends AmazonWebServiceClient implements AWSMediaStore
An AWS Elemental MediaStore container is a namespace that holds folders and objects. You use a container endpoint to create, read, and delete objects.
LOGGING_AWS_REQUEST_METRICENDPOINT_PREFIX| Modifier and Type | Method and Description |
|---|---|
static AWSMediaStoreClientBuilder |
builder() |
CreateContainerResult |
createContainer(CreateContainerRequest request)
Creates a storage container to hold objects.
|
DeleteContainerResult |
deleteContainer(DeleteContainerRequest request)
Deletes the specified container.
|
DeleteContainerPolicyResult |
deleteContainerPolicy(DeleteContainerPolicyRequest request)
Deletes the access policy that is associated with the specified container.
|
DeleteCorsPolicyResult |
deleteCorsPolicy(DeleteCorsPolicyRequest request)
Deletes the cross-origin resource sharing (CORS) configuration information that is set for the container.
|
DeleteLifecyclePolicyResult |
deleteLifecyclePolicy(DeleteLifecyclePolicyRequest request)
Removes an object lifecycle policy from a container.
|
DeleteMetricPolicyResult |
deleteMetricPolicy(DeleteMetricPolicyRequest request)
Deletes the metric policy that is associated with the specified container.
|
DescribeContainerResult |
describeContainer(DescribeContainerRequest request)
Retrieves the properties of the requested container.
|
ResponseMetadata |
getCachedResponseMetadata(AmazonWebServiceRequest request)
Returns additional metadata for a previously executed successful, request, typically used for debugging issues
where a service isn't acting as expected.
|
GetContainerPolicyResult |
getContainerPolicy(GetContainerPolicyRequest request)
Retrieves the access policy for the specified container.
|
GetCorsPolicyResult |
getCorsPolicy(GetCorsPolicyRequest request)
Returns the cross-origin resource sharing (CORS) configuration information that is set for the container.
|
GetLifecyclePolicyResult |
getLifecyclePolicy(GetLifecyclePolicyRequest request)
Retrieves the object lifecycle policy that is assigned to a container.
|
GetMetricPolicyResult |
getMetricPolicy(GetMetricPolicyRequest request)
Returns the metric policy for the specified container.
|
ListContainersResult |
listContainers(ListContainersRequest request)
Lists the properties of all containers in AWS Elemental MediaStore.
|
ListTagsForResourceResult |
listTagsForResource(ListTagsForResourceRequest request)
Returns a list of the tags assigned to the specified container.
|
PutContainerPolicyResult |
putContainerPolicy(PutContainerPolicyRequest request)
Creates an access policy for the specified container to restrict the users and clients that can access it.
|
PutCorsPolicyResult |
putCorsPolicy(PutCorsPolicyRequest request)
Sets the cross-origin resource sharing (CORS) configuration on a container so that the container can service
cross-origin requests.
|
PutLifecyclePolicyResult |
putLifecyclePolicy(PutLifecyclePolicyRequest request)
Writes an object lifecycle policy to a container.
|
PutMetricPolicyResult |
putMetricPolicy(PutMetricPolicyRequest request)
The metric policy that you want to add to the container.
|
void |
shutdown()
Shuts down this client object, releasing any resources that might be held
open.
|
StartAccessLoggingResult |
startAccessLogging(StartAccessLoggingRequest request)
Starts access logging on the specified container.
|
StopAccessLoggingResult |
stopAccessLogging(StopAccessLoggingRequest request)
Stops access logging on the specified container.
|
TagResourceResult |
tagResource(TagResourceRequest request)
Adds tags to the specified AWS Elemental MediaStore container.
|
UntagResourceResult |
untagResource(UntagResourceRequest request)
Removes tags from the specified container.
|
addRequestHandler, addRequestHandler, configureRegion, getClientConfiguration, getEndpointPrefix, getMonitoringListeners, getRequestMetricsCollector, getServiceName, getSignerByURI, getSignerOverride, getSignerRegionOverride, getTimeOffset, makeImmutable, removeRequestHandler, removeRequestHandler, setEndpoint, setEndpoint, setRegion, setServiceNameIntern, setSignerRegionOverride, setTimeOffset, withEndpoint, withRegion, withRegion, withTimeOffsetpublic static AWSMediaStoreClientBuilder builder()
public CreateContainerResult createContainer(CreateContainerRequest request)
Creates a storage container to hold objects. A container is similar to a bucket in the Amazon S3 service.
createContainer in interface AWSMediaStorecreateContainerRequest - ContainerInUseException - The container that you specified in the request already exists or is being updated.LimitExceededException - A service limit has been exceeded.InternalServerErrorException - The service is temporarily unavailable.public DeleteContainerResult deleteContainer(DeleteContainerRequest request)
Deletes the specified container. Before you make a DeleteContainer request, delete any objects in
the container or in any folders in the container. You can delete only empty containers.
deleteContainer in interface AWSMediaStoredeleteContainerRequest - ContainerInUseException - The container that you specified in the request already exists or is being updated.ContainerNotFoundException - The container that you specified in the request does not exist.InternalServerErrorException - The service is temporarily unavailable.public DeleteContainerPolicyResult deleteContainerPolicy(DeleteContainerPolicyRequest request)
Deletes the access policy that is associated with the specified container.
deleteContainerPolicy in interface AWSMediaStoredeleteContainerPolicyRequest - ContainerInUseException - The container that you specified in the request already exists or is being updated.ContainerNotFoundException - The container that you specified in the request does not exist.PolicyNotFoundException - The policy that you specified in the request does not exist.InternalServerErrorException - The service is temporarily unavailable.public DeleteCorsPolicyResult deleteCorsPolicy(DeleteCorsPolicyRequest request)
Deletes the cross-origin resource sharing (CORS) configuration information that is set for the container.
To use this operation, you must have permission to perform the MediaStore:DeleteCorsPolicy action.
The container owner has this permission by default and can grant this permission to others.
deleteCorsPolicy in interface AWSMediaStoredeleteCorsPolicyRequest - ContainerInUseException - The container that you specified in the request already exists or is being updated.ContainerNotFoundException - The container that you specified in the request does not exist.CorsPolicyNotFoundException - The CORS policy that you specified in the request does not exist.InternalServerErrorException - The service is temporarily unavailable.public DeleteLifecyclePolicyResult deleteLifecyclePolicy(DeleteLifecyclePolicyRequest request)
Removes an object lifecycle policy from a container. It takes up to 20 minutes for the change to take effect.
deleteLifecyclePolicy in interface AWSMediaStoredeleteLifecyclePolicyRequest - ContainerInUseException - The container that you specified in the request already exists or is being updated.ContainerNotFoundException - The container that you specified in the request does not exist.PolicyNotFoundException - The policy that you specified in the request does not exist.InternalServerErrorException - The service is temporarily unavailable.public DeleteMetricPolicyResult deleteMetricPolicy(DeleteMetricPolicyRequest request)
Deletes the metric policy that is associated with the specified container. If there is no metric policy associated with the container, MediaStore doesn't send metrics to CloudWatch.
deleteMetricPolicy in interface AWSMediaStoredeleteMetricPolicyRequest - ContainerInUseException - The container that you specified in the request already exists or is being updated.ContainerNotFoundException - The container that you specified in the request does not exist.PolicyNotFoundException - The policy that you specified in the request does not exist.InternalServerErrorException - The service is temporarily unavailable.public DescribeContainerResult describeContainer(DescribeContainerRequest request)
Retrieves the properties of the requested container. This request is commonly used to retrieve the endpoint of a
container. An endpoint is a value assigned by the service when a new container is created. A container's endpoint
does not change after it has been assigned. The DescribeContainer request returns a single
Container object based on ContainerName. To return all Container objects
that are associated with a specified AWS account, use ListContainers.
describeContainer in interface AWSMediaStoredescribeContainerRequest - ContainerNotFoundException - The container that you specified in the request does not exist.InternalServerErrorException - The service is temporarily unavailable.public GetContainerPolicyResult getContainerPolicy(GetContainerPolicyRequest request)
Retrieves the access policy for the specified container. For information about the data that is included in an access policy, see the AWS Identity and Access Management User Guide.
getContainerPolicy in interface AWSMediaStoregetContainerPolicyRequest - ContainerInUseException - The container that you specified in the request already exists or is being updated.ContainerNotFoundException - The container that you specified in the request does not exist.PolicyNotFoundException - The policy that you specified in the request does not exist.InternalServerErrorException - The service is temporarily unavailable.public GetCorsPolicyResult getCorsPolicy(GetCorsPolicyRequest request)
Returns the cross-origin resource sharing (CORS) configuration information that is set for the container.
To use this operation, you must have permission to perform the MediaStore:GetCorsPolicy action. By
default, the container owner has this permission and can grant it to others.
getCorsPolicy in interface AWSMediaStoregetCorsPolicyRequest - ContainerInUseException - The container that you specified in the request already exists or is being updated.ContainerNotFoundException - The container that you specified in the request does not exist.CorsPolicyNotFoundException - The CORS policy that you specified in the request does not exist.InternalServerErrorException - The service is temporarily unavailable.public GetLifecyclePolicyResult getLifecyclePolicy(GetLifecyclePolicyRequest request)
Retrieves the object lifecycle policy that is assigned to a container.
getLifecyclePolicy in interface AWSMediaStoregetLifecyclePolicyRequest - ContainerInUseException - The container that you specified in the request already exists or is being updated.ContainerNotFoundException - The container that you specified in the request does not exist.PolicyNotFoundException - The policy that you specified in the request does not exist.InternalServerErrorException - The service is temporarily unavailable.public GetMetricPolicyResult getMetricPolicy(GetMetricPolicyRequest request)
Returns the metric policy for the specified container.
getMetricPolicy in interface AWSMediaStoregetMetricPolicyRequest - ContainerNotFoundException - The container that you specified in the request does not exist.PolicyNotFoundException - The policy that you specified in the request does not exist.ContainerInUseException - The container that you specified in the request already exists or is being updated.InternalServerErrorException - The service is temporarily unavailable.public ListContainersResult listContainers(ListContainersRequest request)
Lists the properties of all containers in AWS Elemental MediaStore.
You can query to receive all the containers in one response. Or you can include the MaxResults
parameter to receive a limited number of containers in each response. In this case, the response includes a
token. To get the next set of containers, send the command again, this time with the NextToken
parameter (with the returned token as its value). The next set of responses appears, with a token if there are
still more containers to receive.
See also DescribeContainer, which gets the properties of one container.
listContainers in interface AWSMediaStorelistContainersRequest - InternalServerErrorException - The service is temporarily unavailable.public ListTagsForResourceResult listTagsForResource(ListTagsForResourceRequest request)
Returns a list of the tags assigned to the specified container.
listTagsForResource in interface AWSMediaStorelistTagsForResourceRequest - ContainerInUseException - The container that you specified in the request already exists or is being updated.ContainerNotFoundException - The container that you specified in the request does not exist.InternalServerErrorException - The service is temporarily unavailable.public PutContainerPolicyResult putContainerPolicy(PutContainerPolicyRequest request)
Creates an access policy for the specified container to restrict the users and clients that can access it. For information about the data that is included in an access policy, see the AWS Identity and Access Management User Guide.
For this release of the REST API, you can create only one policy for a container. If you enter
PutContainerPolicy twice, the second command modifies the existing policy.
putContainerPolicy in interface AWSMediaStoreputContainerPolicyRequest - ContainerNotFoundException - The container that you specified in the request does not exist.ContainerInUseException - The container that you specified in the request already exists or is being updated.InternalServerErrorException - The service is temporarily unavailable.public PutCorsPolicyResult putCorsPolicy(PutCorsPolicyRequest request)
Sets the cross-origin resource sharing (CORS) configuration on a container so that the container can service cross-origin requests. For example, you might want to enable a request whose origin is http://www.example.com to access your AWS Elemental MediaStore container at my.example.container.com by using the browser's XMLHttpRequest capability.
To enable CORS on a container, you attach a CORS policy to the container. In the CORS policy, you configure rules that identify origins and the HTTP methods that can be executed on your container. The policy can contain up to 398,000 characters. You can add up to 100 rules to a CORS policy. If more than one rule applies, the service uses the first applicable rule listed.
To learn more about CORS, see Cross-Origin Resource Sharing (CORS) in AWS Elemental MediaStore.
putCorsPolicy in interface AWSMediaStoreputCorsPolicyRequest - ContainerNotFoundException - The container that you specified in the request does not exist.ContainerInUseException - The container that you specified in the request already exists or is being updated.InternalServerErrorException - The service is temporarily unavailable.public PutLifecyclePolicyResult putLifecyclePolicy(PutLifecyclePolicyRequest request)
Writes an object lifecycle policy to a container. If the container already has an object lifecycle policy, the service replaces the existing policy with the new policy. It takes up to 20 minutes for the change to take effect.
For information about how to construct an object lifecycle policy, see Components of an Object Lifecycle Policy.
putLifecyclePolicy in interface AWSMediaStoreputLifecyclePolicyRequest - ContainerInUseException - The container that you specified in the request already exists or is being updated.ContainerNotFoundException - The container that you specified in the request does not exist.InternalServerErrorException - The service is temporarily unavailable.public PutMetricPolicyResult putMetricPolicy(PutMetricPolicyRequest request)
The metric policy that you want to add to the container. A metric policy allows AWS Elemental MediaStore to send metrics to Amazon CloudWatch. It takes up to 20 minutes for the new policy to take effect.
putMetricPolicy in interface AWSMediaStoreputMetricPolicyRequest - ContainerInUseException - The container that you specified in the request already exists or is being updated.ContainerNotFoundException - The container that you specified in the request does not exist.InternalServerErrorException - The service is temporarily unavailable.public StartAccessLoggingResult startAccessLogging(StartAccessLoggingRequest request)
Starts access logging on the specified container. When you enable access logging on a container, MediaStore delivers access logs for objects stored in that container to Amazon CloudWatch Logs.
startAccessLogging in interface AWSMediaStorestartAccessLoggingRequest - ContainerInUseException - The container that you specified in the request already exists or is being updated.ContainerNotFoundException - The container that you specified in the request does not exist.InternalServerErrorException - The service is temporarily unavailable.public StopAccessLoggingResult stopAccessLogging(StopAccessLoggingRequest request)
Stops access logging on the specified container. When you stop access logging on a container, MediaStore stops sending access logs to Amazon CloudWatch Logs. These access logs are not saved and are not retrievable.
stopAccessLogging in interface AWSMediaStorestopAccessLoggingRequest - ContainerInUseException - The container that you specified in the request already exists or is being updated.ContainerNotFoundException - The container that you specified in the request does not exist.InternalServerErrorException - The service is temporarily unavailable.public TagResourceResult tagResource(TagResourceRequest request)
Adds tags to the specified AWS Elemental MediaStore container. Tags are key:value pairs that you can associate with AWS resources. For example, the tag key might be "customer" and the tag value might be "companyA." You can specify one or more tags to add to each container. 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.
tagResource in interface AWSMediaStoretagResourceRequest - ContainerInUseException - The container that you specified in the request already exists or is being updated.ContainerNotFoundException - The container that you specified in the request does not exist.InternalServerErrorException - The service is temporarily unavailable.public UntagResourceResult untagResource(UntagResourceRequest request)
Removes tags from the specified container. You can specify one or more tags to remove.
untagResource in interface AWSMediaStoreuntagResourceRequest - ContainerInUseException - The container that you specified in the request already exists or is being updated.ContainerNotFoundException - The container that you specified in the request does not exist.InternalServerErrorException - The service is temporarily unavailable.public ResponseMetadata getCachedResponseMetadata(AmazonWebServiceRequest request)
Response metadata is only cached for a limited period of time, so if you need to access this extra diagnostic information for an executed request, you should use this method to retrieve it as soon as possible after executing the request.
getCachedResponseMetadata in interface AWSMediaStorerequest - The originally executed requestpublic void shutdown()
AmazonWebServiceClientshutdown in interface AWSMediaStoreshutdown in class AmazonWebServiceClient