certificates
Creates, updates, deletes, gets or lists a certificates resource.
Overview
| Name | certificates |
| Type | Resource |
| Id | aws.mediaconvert.certificates |
Fields
The following fields are returned by SELECT queries:
SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
disassociate_certificate | update | arn, region | Removes an association between the Amazon Resource Name (ARN) of an AWS Certificate Manager (ACM) certificate and an AWS Elemental MediaConvert resource. | |
associate_certificate | update | region | Associates an AWS Certificate Manager (ACM) Amazon Resource Name (ARN) with AWS Elemental MediaConvert. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
arn | string | The ARN of the ACM certificate that you want to disassociate from your MediaConvert resource. |
region | string | AWS region (default: us-east-1) |
UPDATE examples
- disassociate_certificate
- associate_certificate
Removes an association between the Amazon Resource Name (ARN) of an AWS Certificate Manager (ACM) certificate and an AWS Elemental MediaConvert resource.
UPDATE aws.mediaconvert.certificates
SET
-- No updatable properties
WHERE
arn = '{{ arn }}' --required
AND region = '{{ region }}' --required;
Associates an AWS Certificate Manager (ACM) Amazon Resource Name (ARN) with AWS Elemental MediaConvert.
UPDATE aws.mediaconvert.certificates
SET
Arn = '{{ Arn }}'
WHERE
region = '{{ region }}' --required;