diff --git a/CHANGELOG.md b/CHANGELOG.md index 561a721800f..19a4035fbf9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +Release v1.43.27 (2022-03-28) +=== + +### Service Client Updates +* `service/acm-pca`: Updates service documentation +* `service/medialive`: Updates service API and documentation + * This release adds support for selecting a maintenance window. + Release v1.43.26 (2022-03-25) === diff --git a/aws/endpoints/defaults.go b/aws/endpoints/defaults.go index 138eacb7c81..cb5eab41f5f 100644 --- a/aws/endpoints/defaults.go +++ b/aws/endpoints/defaults.go @@ -15122,9 +15122,15 @@ var awsPartition = partition{ }, "profile": service{ Endpoints: serviceEndpoints{ + endpointKey{ + Region: "af-south-1", + }: endpoint{}, endpointKey{ Region: "ap-northeast-1", }: endpoint{}, + endpointKey{ + Region: "ap-northeast-2", + }: endpoint{}, endpointKey{ Region: "ap-southeast-1", }: endpoint{}, @@ -29166,6 +29172,13 @@ var awsisoPartition = partition{ }: endpoint{}, }, }, + "tagging": service{ + Endpoints: serviceEndpoints{ + endpointKey{ + Region: "us-iso-east-1", + }: endpoint{}, + }, + }, "transcribe": service{ Defaults: endpointDefaults{ defaultKey{}: endpoint{ diff --git a/aws/version.go b/aws/version.go index 3a478c08b1d..7e9562758f9 100644 --- a/aws/version.go +++ b/aws/version.go @@ -5,4 +5,4 @@ package aws const SDKName = "aws-sdk-go" // SDKVersion is the version of this SDK -const SDKVersion = "1.43.26" +const SDKVersion = "1.43.27" diff --git a/models/apis/acm-pca/2017-08-22/docs-2.json b/models/apis/acm-pca/2017-08-22/docs-2.json index 8f079530c9e..e0a9b8a6096 100644 --- a/models/apis/acm-pca/2017-08-22/docs-2.json +++ b/models/apis/acm-pca/2017-08-22/docs-2.json @@ -1,27 +1,27 @@ { "version": "2.0", - "service": "

This is the Amazon Web Services Private Certificate Authority API Reference. It provides descriptions, syntax, and usage examples for each of the actions and data types involved in creating and managing a private certificate authority (CA) for your organization.

The documentation for each action shows the API request parameters and the JSON response. Alternatively, you can use one of the Amazon Web Services SDKs to access an API that is tailored to the programming language or platform that you prefer. For more information, see Amazon Web Services SDKs.

Each Amazon Web Services Private CA API operation has a quota that determines the number of times the operation can be called per second. Amazon Web Services Private CA throttles API requests at different rates depending on the operation. Throttling means that Amazon Web Services Private CA rejects an otherwise valid request because the request exceeds the operation's quota for the number of requests per second. When a request is throttled, Amazon Web Services Private CA returns a ThrottlingException error. Amazon Web Services Private CA does not guarantee a minimum request rate for APIs.

To see an up-to-date list of your Amazon Web Services Private CA quotas, or to request a quota increase, log into your Amazon Web Services account and visit the Service Quotas console.

", + "service": "

This is the Certificate Manager Private Certificate Authority (PCA) API Reference. It provides descriptions, syntax, and usage examples for each of the actions and data types involved in creating and managing a private certificate authority (CA) for your organization.

The documentation for each action shows the API request parameters and the JSON response. Alternatively, you can use one of the Amazon Web Services SDKs to access an API that is tailored to the programming language or platform that you prefer. For more information, see Amazon Web Services SDKs.

Each ACM Private CA API operation has a quota that determines the number of times the operation can be called per second. ACM Private CA throttles API requests at different rates depending on the operation. Throttling means that ACM Private CA rejects an otherwise valid request because the request exceeds the operation's quota for the number of requests per second. When a request is throttled, ACM Private CA returns a ThrottlingException error. ACM Private CA does not guarantee a minimum request rate for APIs.

To see an up-to-date list of your ACM Private CA quotas, or to request a quota increase, log into your Amazon Web Services account and visit the Service Quotas console.

", "operations": { - "CreateCertificateAuthority": "

Creates a root or subordinate private certificate authority (CA). You must specify the CA configuration, an optional configuration for Online Certificate Status Protocol (OCSP) and/or a certificate revocation list (CRL), the CA type, and an optional idempotency token to avoid accidental creation of multiple CAs. The CA configuration specifies the name of the algorithm and key size to be used to create the CA private key, the type of signing algorithm that the CA uses, and X.500 subject information. The OCSP configuration can optionally specify a custom URL for the OCSP responder. The CRL configuration specifies the CRL expiration period in days (the validity period of the CRL), the Amazon S3 bucket that will contain the CRL, and a CNAME alias for the S3 bucket that is included in certificates issued by the CA. If successful, this action returns the Amazon Resource Name (ARN) of the CA.

Amazon Web Services Private CA assets that are stored in Amazon S3 can be protected with encryption. For more information, see Encrypting Your CRLs.

Both PCA and the IAM principal must have permission to write to the S3 bucket that you specify. If the IAM principal making the call does not have permission to write to the bucket, then an exception is thrown. For more information, see Access policies for CRLs in Amazon S3.

", - "CreateCertificateAuthorityAuditReport": "

Creates an audit report that lists every time that your CA private key is used. The report is saved in the Amazon S3 bucket that you specify on input. The IssueCertificate and RevokeCertificate actions use the private key.

Both PCA and the IAM principal must have permission to write to the S3 bucket that you specify. If the IAM principal making the call does not have permission to write to the bucket, then an exception is thrown. For more information, see Access policies for CRLs in Amazon S3.

Amazon Web Services Private CA assets that are stored in Amazon S3 can be protected with encryption. For more information, see Encrypting Your Audit Reports.

You can generate a maximum of one report every 30 minutes.

", - "CreatePermission": "

Grants one or more permissions on a private CA to the Certificate Manager (ACM) service principal (acm.amazonaws.com). These permissions allow ACM to issue and renew ACM certificates that reside in the same Amazon Web Services account as the CA.

You can list current permissions with the ListPermissions action and revoke them with the DeletePermission action.

About Permissions

", - "DeleteCertificateAuthority": "

Deletes a private certificate authority (CA). You must provide the Amazon Resource Name (ARN) of the private CA that you want to delete. You can find the ARN by calling the ListCertificateAuthorities action.

Deleting a CA will invalidate other CAs and certificates below it in your CA hierarchy.

Before you can delete a CA that you have created and activated, you must disable it. To do this, call the UpdateCertificateAuthority action and set the CertificateAuthorityStatus parameter to DISABLED.

Additionally, you can delete a CA if you are waiting for it to be created (that is, the status of the CA is CREATING). You can also delete it if the CA has been created but you haven't yet imported the signed certificate into Amazon Web Services Private CA (that is, the status of the CA is PENDING_CERTIFICATE).

When you successfully call DeleteCertificateAuthority, the CA's status changes to DELETED. However, the CA won't be permanently deleted until the restoration period has passed. By default, if you do not set the PermanentDeletionTimeInDays parameter, the CA remains restorable for 30 days. You can set the parameter from 7 to 30 days. The DescribeCertificateAuthority action returns the time remaining in the restoration window of a private CA in the DELETED state. To restore an eligible CA, call the RestoreCertificateAuthority action.

", - "DeletePermission": "

Revokes permissions on a private CA granted to the Certificate Manager (ACM) service principal (acm.amazonaws.com).

These permissions allow ACM to issue and renew ACM certificates that reside in the same Amazon Web Services account as the CA. If you revoke these permissions, ACM will no longer renew the affected certificates automatically.

Permissions can be granted with the CreatePermission action and listed with the ListPermissions action.

About Permissions

", - "DeletePolicy": "

Deletes the resource-based policy attached to a private CA. Deletion will remove any access that the policy has granted. If there is no policy attached to the private CA, this action will return successful.

If you delete a policy that was applied through Amazon Web Services Resource Access Manager (RAM), the CA will be removed from all shares in which it was included.

The Certificate Manager Service Linked Role that the policy supports is not affected when you delete the policy.

The current policy can be shown with GetPolicy and updated with PutPolicy.

About Policies

", - "DescribeCertificateAuthority": "

Lists information about your private certificate authority (CA) or one that has been shared with you. You specify the private CA on input by its ARN (Amazon Resource Name). The output contains the status of your CA. This can be any of the following:

", + "CreateCertificateAuthority": "

Creates a root or subordinate private certificate authority (CA). You must specify the CA configuration, an optional configuration for Online Certificate Status Protocol (OCSP) and/or a certificate revocation list (CRL), the CA type, and an optional idempotency token to avoid accidental creation of multiple CAs. The CA configuration specifies the name of the algorithm and key size to be used to create the CA private key, the type of signing algorithm that the CA uses, and X.500 subject information. The OCSP configuration can optionally specify a custom URL for the OCSP responder. The CRL configuration specifies the CRL expiration period in days (the validity period of the CRL), the Amazon S3 bucket that will contain the CRL, and a CNAME alias for the S3 bucket that is included in certificates issued by the CA. If successful, this action returns the Amazon Resource Name (ARN) of the CA.

ACM Private CA assets that are stored in Amazon S3 can be protected with encryption. For more information, see Encrypting Your CRLs.

Both PCA and the IAM principal must have permission to write to the S3 bucket that you specify. If the IAM principal making the call does not have permission to write to the bucket, then an exception is thrown. For more information, see Access policies for CRLs in Amazon S3.

", + "CreateCertificateAuthorityAuditReport": "

Creates an audit report that lists every time that your CA private key is used. The report is saved in the Amazon S3 bucket that you specify on input. The IssueCertificate and RevokeCertificate actions use the private key.

Both PCA and the IAM principal must have permission to write to the S3 bucket that you specify. If the IAM principal making the call does not have permission to write to the bucket, then an exception is thrown. For more information, see Access policies for CRLs in Amazon S3.

ACM Private CA assets that are stored in Amazon S3 can be protected with encryption. For more information, see Encrypting Your Audit Reports.

You can generate a maximum of one report every 30 minutes.

", + "CreatePermission": "

Grants one or more permissions on a private CA to the Certificate Manager (ACM) service principal (acm.amazonaws.com). These permissions allow ACM to issue and renew ACM certificates that reside in the same Amazon Web Services account as the CA.

You can list current permissions with the ListPermissions action and revoke them with the DeletePermission action.

About Permissions

", + "DeleteCertificateAuthority": "

Deletes a private certificate authority (CA). You must provide the Amazon Resource Name (ARN) of the private CA that you want to delete. You can find the ARN by calling the ListCertificateAuthorities action.

Deleting a CA will invalidate other CAs and certificates below it in your CA hierarchy.

Before you can delete a CA that you have created and activated, you must disable it. To do this, call the UpdateCertificateAuthority action and set the CertificateAuthorityStatus parameter to DISABLED.

Additionally, you can delete a CA if you are waiting for it to be created (that is, the status of the CA is CREATING). You can also delete it if the CA has been created but you haven't yet imported the signed certificate into ACM Private CA (that is, the status of the CA is PENDING_CERTIFICATE).

When you successfully call DeleteCertificateAuthority, the CA's status changes to DELETED. However, the CA won't be permanently deleted until the restoration period has passed. By default, if you do not set the PermanentDeletionTimeInDays parameter, the CA remains restorable for 30 days. You can set the parameter from 7 to 30 days. The DescribeCertificateAuthority action returns the time remaining in the restoration window of a private CA in the DELETED state. To restore an eligible CA, call the RestoreCertificateAuthority action.

", + "DeletePermission": "

Revokes permissions on a private CA granted to the Certificate Manager (ACM) service principal (acm.amazonaws.com).

These permissions allow ACM to issue and renew ACM certificates that reside in the same Amazon Web Services account as the CA. If you revoke these permissions, ACM will no longer renew the affected certificates automatically.

Permissions can be granted with the CreatePermission action and listed with the ListPermissions action.

About Permissions

", + "DeletePolicy": "

Deletes the resource-based policy attached to a private CA. Deletion will remove any access that the policy has granted. If there is no policy attached to the private CA, this action will return successful.

If you delete a policy that was applied through Amazon Web Services Resource Access Manager (RAM), the CA will be removed from all shares in which it was included.

The Certificate Manager Service Linked Role that the policy supports is not affected when you delete the policy.

The current policy can be shown with GetPolicy and updated with PutPolicy.

About Policies

", + "DescribeCertificateAuthority": "

Lists information about your private certificate authority (CA) or one that has been shared with you. You specify the private CA on input by its ARN (Amazon Resource Name). The output contains the status of your CA. This can be any of the following:

", "DescribeCertificateAuthorityAuditReport": "

Lists information about a specific audit report created by calling the CreateCertificateAuthorityAuditReport action. Audit information is created every time the certificate authority (CA) private key is used. The private key is used when you call the IssueCertificate action or the RevokeCertificate action.

", "GetCertificate": "

Retrieves a certificate from your private CA or one that has been shared with you. The ARN of the certificate is returned when you call the IssueCertificate action. You must specify both the ARN of your private CA and the ARN of the issued certificate when calling the GetCertificate action. You can retrieve the certificate if it is in the ISSUED state. You can call the CreateCertificateAuthorityAuditReport action to create a report that contains information about all of the certificates issued and revoked by your private CA.

", "GetCertificateAuthorityCertificate": "

Retrieves the certificate and certificate chain for your private certificate authority (CA) or one that has been shared with you. Both the certificate and the chain are base64 PEM-encoded. The chain does not include the CA certificate. Each certificate in the chain signs the one before it.

", - "GetCertificateAuthorityCsr": "

Retrieves the certificate signing request (CSR) for your private certificate authority (CA). The CSR is created when you call the CreateCertificateAuthority action. Sign the CSR with your Amazon Web Services Private CA-hosted or on-premises root or subordinate CA. Then import the signed certificate back into Amazon Web Services Private CA by calling the ImportCertificateAuthorityCertificate action. The CSR is returned as a base64 PEM-encoded string.

", - "GetPolicy": "

Retrieves the resource-based policy attached to a private CA. If either the private CA resource or the policy cannot be found, this action returns a ResourceNotFoundException.

The policy can be attached or updated with PutPolicy and removed with DeletePolicy.

About Policies

", - "ImportCertificateAuthorityCertificate": "

Imports a signed private CA certificate into Amazon Web Services Private CA. This action is used when you are using a chain of trust whose root is located outside Amazon Web Services Private CA. Before you can call this action, the following preparations must in place:

  1. In Amazon Web Services Private CA, call the CreateCertificateAuthority action to create the private CA that you plan to back with the imported certificate.

  2. Call the GetCertificateAuthorityCsr action to generate a certificate signing request (CSR).

  3. Sign the CSR using a root or intermediate CA hosted by either an on-premises PKI hierarchy or by a commercial CA.

  4. Create a certificate chain and copy the signed certificate and the certificate chain to your working directory.

Amazon Web Services Private CA supports three scenarios for installing a CA certificate:

The following additional requirements apply when you import a CA certificate.

Enforcement of Critical Constraints

Amazon Web Services Private CA allows the following extensions to be marked critical in the imported CA certificate or chain.

Amazon Web Services Private CA rejects the following extensions when they are marked critical in an imported CA certificate or chain.

", - "IssueCertificate": "

Uses your private certificate authority (CA), or one that has been shared with you, to issue a client certificate. This action returns the Amazon Resource Name (ARN) of the certificate. You can retrieve the certificate by calling the GetCertificate action and specifying the ARN.

You cannot use the ACM ListCertificateAuthorities action to retrieve the ARNs of the certificates that you issue by using Amazon Web Services Private CA.

", + "GetCertificateAuthorityCsr": "

Retrieves the certificate signing request (CSR) for your private certificate authority (CA). The CSR is created when you call the CreateCertificateAuthority action. Sign the CSR with your ACM Private CA-hosted or on-premises root or subordinate CA. Then import the signed certificate back into ACM Private CA by calling the ImportCertificateAuthorityCertificate action. The CSR is returned as a base64 PEM-encoded string.

", + "GetPolicy": "

Retrieves the resource-based policy attached to a private CA. If either the private CA resource or the policy cannot be found, this action returns a ResourceNotFoundException.

The policy can be attached or updated with PutPolicy and removed with DeletePolicy.

About Policies

", + "ImportCertificateAuthorityCertificate": "

Imports a signed private CA certificate into ACM Private CA. This action is used when you are using a chain of trust whose root is located outside ACM Private CA. Before you can call this action, the following preparations must in place:

  1. In ACM Private CA, call the CreateCertificateAuthority action to create the private CA that you plan to back with the imported certificate.

  2. Call the GetCertificateAuthorityCsr action to generate a certificate signing request (CSR).

  3. Sign the CSR using a root or intermediate CA hosted by either an on-premises PKI hierarchy or by a commercial CA.

  4. Create a certificate chain and copy the signed certificate and the certificate chain to your working directory.

ACM Private CA supports three scenarios for installing a CA certificate:

The following additional requirements apply when you import a CA certificate.

Enforcement of Critical Constraints

ACM Private CA allows the following extensions to be marked critical in the imported CA certificate or chain.

ACM Private CA rejects the following extensions when they are marked critical in an imported CA certificate or chain.

", + "IssueCertificate": "

Uses your private certificate authority (CA), or one that has been shared with you, to issue a client certificate. This action returns the Amazon Resource Name (ARN) of the certificate. You can retrieve the certificate by calling the GetCertificate action and specifying the ARN.

You cannot use the ACM ListCertificateAuthorities action to retrieve the ARNs of the certificates that you issue by using ACM Private CA.

", "ListCertificateAuthorities": "

Lists the private certificate authorities that you created by using the CreateCertificateAuthority action.

", - "ListPermissions": "

List all permissions on a private CA, if any, granted to the Certificate Manager (ACM) service principal (acm.amazonaws.com).

These permissions allow ACM to issue and renew ACM certificates that reside in the same Amazon Web Services account as the CA.

Permissions can be granted with the CreatePermission action and revoked with the DeletePermission action.

About Permissions

", + "ListPermissions": "

List all permissions on a private CA, if any, granted to the Certificate Manager (ACM) service principal (acm.amazonaws.com).

These permissions allow ACM to issue and renew ACM certificates that reside in the same Amazon Web Services account as the CA.

Permissions can be granted with the CreatePermission action and revoked with the DeletePermission action.

About Permissions

", "ListTags": "

Lists the tags, if any, that are associated with your private CA or one that has been shared with you. Tags are labels that you can use to identify and organize your CAs. Each tag consists of a key and an optional value. Call the TagCertificateAuthority action to add one or more tags to your CA. Call the UntagCertificateAuthority action to remove tags.

", - "PutPolicy": "

Attaches a resource-based policy to a private CA.

A policy can also be applied by sharing a private CA through Amazon Web Services Resource Access Manager (RAM). For more information, see Attach a Policy for Cross-Account Access.

The policy can be displayed with GetPolicy and removed with DeletePolicy.

About Policies

", + "PutPolicy": "

Attaches a resource-based policy to a private CA.

A policy can also be applied by sharing a private CA through Amazon Web Services Resource Access Manager (RAM). For more information, see Attach a Policy for Cross-Account Access.

The policy can be displayed with GetPolicy and removed with DeletePolicy.

About Policies

", "RestoreCertificateAuthority": "

Restores a certificate authority (CA) that is in the DELETED state. You can restore a CA during the period that you defined in the PermanentDeletionTimeInDays parameter of the DeleteCertificateAuthority action. Currently, you can specify 7 to 30 days. If you did not specify a PermanentDeletionTimeInDays value, by default you can restore the CA at any time in a 30 day period. You can check the time remaining in the restoration period of a private CA in the DELETED state by calling the DescribeCertificateAuthority or ListCertificateAuthorities actions. The status of a restored CA is set to its pre-deletion status when the RestoreCertificateAuthority action returns. To change its status to ACTIVE, call the UpdateCertificateAuthority action. If the private CA was in the PENDING_CERTIFICATE state at deletion, you must use the ImportCertificateAuthorityCertificate action to import a certificate authority into the private CA before it can be activated. You cannot restore a CA after the restoration period has ended.

", - "RevokeCertificate": "

Revokes a certificate that was issued inside Amazon Web Services Private CA. If you enable a certificate revocation list (CRL) when you create or update your private CA, information about the revoked certificates will be included in the CRL. Amazon Web Services Private CA writes the CRL to an S3 bucket that you specify. A CRL is typically updated approximately 30 minutes after a certificate is revoked. If for any reason the CRL update fails, Amazon Web Services Private CA attempts makes further attempts every 15 minutes. With Amazon CloudWatch, you can create alarms for the metrics CRLGenerated and MisconfiguredCRLBucket. For more information, see Supported CloudWatch Metrics.

Both PCA and the IAM principal must have permission to write to the S3 bucket that you specify. If the IAM principal making the call does not have permission to write to the bucket, then an exception is thrown. For more information, see Access policies for CRLs in Amazon S3.

Amazon Web Services Private CA also writes revocation information to the audit report. For more information, see CreateCertificateAuthorityAuditReport.

You cannot revoke a root CA self-signed certificate.

", + "RevokeCertificate": "

Revokes a certificate that was issued inside ACM Private CA. If you enable a certificate revocation list (CRL) when you create or update your private CA, information about the revoked certificates will be included in the CRL. ACM Private CA writes the CRL to an S3 bucket that you specify. A CRL is typically updated approximately 30 minutes after a certificate is revoked. If for any reason the CRL update fails, ACM Private CA attempts makes further attempts every 15 minutes. With Amazon CloudWatch, you can create alarms for the metrics CRLGenerated and MisconfiguredCRLBucket. For more information, see Supported CloudWatch Metrics.

Both PCA and the IAM principal must have permission to write to the S3 bucket that you specify. If the IAM principal making the call does not have permission to write to the bucket, then an exception is thrown. For more information, see Access policies for CRLs in Amazon S3.

ACM Private CA also writes revocation information to the audit report. For more information, see CreateCertificateAuthorityAuditReport.

You cannot revoke a root CA self-signed certificate.

", "TagCertificateAuthority": "

Adds one or more tags to your private CA. Tags are labels that you can use to identify and organize your Amazon Web Services resources. Each tag consists of a key and an optional value. You specify the private CA on input by its Amazon Resource Name (ARN). You specify the tag by using a key-value pair. You can apply a tag to just one private CA if you want to identify a specific characteristic of that CA, or you can apply the same tag to multiple private CAs if you want to filter for a common relationship among those CAs. To remove one or more tags, use the UntagCertificateAuthority action. Call the ListTags action to see what tags are associated with your CA.

", "UntagCertificateAuthority": "

Remove one or more tags from your private CA. A tag consists of a key-value pair. If you do not specify the value portion of the tag when calling this action, the tag will be removed regardless of value. If you specify a value, the tag is removed only if it is associated with the specified value. To add tags to a private CA, use the TagCertificateAuthority. Call the ListTags action to see what tags are associated with your CA.

", "UpdateCertificateAuthority": "

Updates the status or configuration of a private certificate authority (CA). Your private CA must be in the ACTIVE or DISABLED state before you can update it. You can disable a private CA that is in the ACTIVE state or make a CA that is in the DISABLED state active again.

Both PCA and the IAM principal must have permission to write to the S3 bucket that you specify. If the IAM principal making the call does not have permission to write to the bucket, then an exception is thrown. For more information, see Access policies for CRLs in Amazon S3.

" @@ -97,9 +97,9 @@ } }, "ApiPassthrough": { - "base": "

Contains X.509 certificate information to be placed in an issued certificate. An APIPassthrough or APICSRPassthrough template variant must be selected, or else this parameter is ignored.

If conflicting or duplicate certificate information is supplied from other sources, Amazon Web Services Private CA applies order of operation rules to determine what information is used.

", + "base": "

Contains X.509 certificate information to be placed in an issued certificate. An APIPassthrough or APICSRPassthrough template variant must be selected, or else this parameter is ignored.

If conflicting or duplicate certificate information is supplied from other sources, ACM Private CA applies order of operation rules to determine what information is used.

", "refs": { - "IssueCertificateRequest$ApiPassthrough": "

Specifies X.509 certificate information to be included in the issued certificate. An APIPassthrough or APICSRPassthrough template variant must be selected, or else this parameter is ignored. For more information about using these templates, see Understanding Certificate Templates.

If conflicting or duplicate certificate information is supplied during certificate issuance, Amazon Web Services Private CA applies order of operation rules to determine what information is used.

" + "IssueCertificateRequest$ApiPassthrough": "

Specifies X.509 certificate information to be included in the issued certificate. An APIPassthrough or APICSRPassthrough template variant must be selected, or else this parameter is ignored. For more information about using these templates, see Understanding Certificate Templates.

If conflicting or duplicate certificate information is supplied during certificate issuance, ACM Private CA applies order of operation rules to determine what information is used.

" } }, "Arn": { @@ -121,7 +121,7 @@ "GetPolicyRequest$ResourceArn": "

The Amazon Resource Number (ARN) of the private CA that will have its policy retrieved. You can find the CA's ARN by calling the ListCertificateAuthorities action.

", "ImportCertificateAuthorityCertificateRequest$CertificateAuthorityArn": "

The Amazon Resource Name (ARN) that was returned when you called CreateCertificateAuthority. This must be of the form:

arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012

", "IssueCertificateRequest$CertificateAuthorityArn": "

The Amazon Resource Name (ARN) that was returned when you called CreateCertificateAuthority. This must be of the form:

arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012

", - "IssueCertificateRequest$TemplateArn": "

Specifies a custom configuration template to use when issuing a certificate. If this parameter is not provided, Amazon Web Services Private CA defaults to the EndEntityCertificate/V1 template. For CA certificates, you should choose the shortest path length that meets your needs. The path length is indicated by the PathLenN portion of the ARN, where N is the CA depth.

Note: The CA depth configured on a subordinate CA certificate must not exceed the limit set by its parents in the CA hierarchy.

For a list of TemplateArn values supported by Amazon Web Services Private CA, see Understanding Certificate Templates.

", + "IssueCertificateRequest$TemplateArn": "

Specifies a custom configuration template to use when issuing a certificate. If this parameter is not provided, ACM Private CA defaults to the EndEntityCertificate/V1 template. For CA certificates, you should choose the shortest path length that meets your needs. The path length is indicated by the PathLenN portion of the ARN, where N is the CA depth.

Note: The CA depth configured on a subordinate CA certificate must not exceed the limit set by its parents in the CA hierarchy.

For a list of TemplateArn values supported by ACM Private CA, see Understanding Certificate Templates.

", "IssueCertificateResponse$CertificateArn": "

The Amazon Resource Name (ARN) of the issued certificate and the certificate serial number. This is of the form:

arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012/certificate/286535153982981100925020015808220737245

", "ListPermissionsRequest$CertificateAuthorityArn": "

The Amazon Resource Number (ARN) of the private CA to inspect. You can find the ARN by calling the ListCertificateAuthorities action. This must be of the form: arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012 You can get a private CA's ARN by running the ListCertificateAuthorities action.

", "ListTagsRequest$CertificateAuthorityArn": "

The Amazon Resource Name (ARN) that was returned when you called the CreateCertificateAuthority action. This must be of the form:

arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012

", @@ -183,7 +183,7 @@ } }, "CertificateAuthority": { - "base": "

Contains information about your private certificate authority (CA). Your private CA can issue and revoke X.509 digital certificates. Digital certificates verify that the entity named in the certificate Subject field owns or controls the public key contained in the Subject Public Key Info field. Call the CreateCertificateAuthority action to create your private CA. You must then call the GetCertificateAuthorityCertificate action to retrieve a private CA certificate signing request (CSR). Sign the CSR with your Amazon Web Services Private CA-hosted or on-premises root or subordinate CA certificate. Call the ImportCertificateAuthorityCertificate action to import the signed certificate into Certificate Manager (ACM).

", + "base": "

Contains information about your private certificate authority (CA). Your private CA can issue and revoke X.509 digital certificates. Digital certificates verify that the entity named in the certificate Subject field owns or controls the public key contained in the Subject Public Key Info field. Call the CreateCertificateAuthority action to create your private CA. You must then call the GetCertificateAuthorityCertificate action to retrieve a private CA certificate signing request (CSR). Sign the CSR with your ACM Private CA-hosted or on-premises root or subordinate CA certificate. Call the ImportCertificateAuthorityCertificate action to import the signed certificate into Certificate Manager (ACM).

", "refs": { "CertificateAuthorities$member": null, "DescribeCertificateAuthorityResponse$CertificateAuthority": "

A CertificateAuthority structure that contains information about your private CA.

" @@ -233,7 +233,7 @@ "CertificateChainBlob": { "base": null, "refs": { - "ImportCertificateAuthorityCertificateRequest$CertificateChain": "

A PEM-encoded file that contains all of your certificates, other than the certificate you're importing, chaining up to your root CA. Your Amazon Web Services Private CA-hosted or on-premises root certificate is the last in the chain, and each certificate in the chain signs the one preceding.

This parameter must be supplied when you import a subordinate CA. When you import a root CA, there is no chain.

" + "ImportCertificateAuthorityCertificateRequest$CertificateChain": "

A PEM-encoded file that contains all of your certificates, other than the certificate you're importing, chaining up to your root CA. Your ACM Private CA-hosted or on-premises root certificate is the last in the chain, and each certificate in the chain signs the one preceding.

This parameter must be supplied when you import a subordinate CA. When you import a root CA, there is no chain.

" } }, "CertificateMismatchException": { @@ -284,9 +284,9 @@ } }, "CrlConfiguration": { - "base": "

Contains configuration information for a certificate revocation list (CRL). Your private certificate authority (CA) creates base CRLs. Delta CRLs are not supported. You can enable CRLs for your new or an existing private CA by setting the Enabled parameter to true. Your private CA writes CRLs to an S3 bucket that you specify in the S3BucketName parameter. You can hide the name of your bucket by specifying a value for the CustomCname parameter. Your private CA copies the CNAME or the S3 bucket name to the CRL Distribution Points extension of each certificate it issues. Your S3 bucket policy must give write permission to Amazon Web Services Private CA.

Amazon Web Services Private CA assets that are stored in Amazon S3 can be protected with encryption. For more information, see Encrypting Your CRLs.

Your private CA uses the value in the ExpirationInDays parameter to calculate the nextUpdate field in the CRL. The CRL is refreshed prior to a certificate's expiration date or when a certificate is revoked. When a certificate is revoked, it appears in the CRL until the certificate expires, and then in one additional CRL after expiration, and it always appears in the audit report.

A CRL is typically updated approximately 30 minutes after a certificate is revoked. If for any reason a CRL update fails, Amazon Web Services Private CA makes further attempts every 15 minutes.

CRLs contain the following fields:

Certificate revocation lists created by Amazon Web Services Private CA are DER-encoded. You can use the following OpenSSL command to list a CRL.

openssl crl -inform DER -text -in crl_path -noout

For more information, see Planning a certificate revocation list (CRL) in the Amazon Web Services Private Certificate Authority User Guide

", + "base": "

Contains configuration information for a certificate revocation list (CRL). Your private certificate authority (CA) creates base CRLs. Delta CRLs are not supported. You can enable CRLs for your new or an existing private CA by setting the Enabled parameter to true. Your private CA writes CRLs to an S3 bucket that you specify in the S3BucketName parameter. You can hide the name of your bucket by specifying a value for the CustomCname parameter. Your private CA copies the CNAME or the S3 bucket name to the CRL Distribution Points extension of each certificate it issues. Your S3 bucket policy must give write permission to ACM Private CA.

ACM Private CA assets that are stored in Amazon S3 can be protected with encryption. For more information, see Encrypting Your CRLs.

Your private CA uses the value in the ExpirationInDays parameter to calculate the nextUpdate field in the CRL. The CRL is refreshed prior to a certificate's expiration date or when a certificate is revoked. When a certificate is revoked, it appears in the CRL until the certificate expires, and then in one additional CRL after expiration, and it always appears in the audit report.

A CRL is typically updated approximately 30 minutes after a certificate is revoked. If for any reason a CRL update fails, ACM Private CA makes further attempts every 15 minutes.

CRLs contain the following fields:

Certificate revocation lists created by ACM Private CA are DER-encoded. You can use the following OpenSSL command to list a CRL.

openssl crl -inform DER -text -in crl_path -noout

For more information, see Planning a certificate revocation list (CRL) in the Certificate Manager Private Certificate Authority (PCA) User Guide

", "refs": { - "RevocationConfiguration$CrlConfiguration": "

Configuration of the certificate revocation list (CRL), if any, maintained by your private CA. A CRL is typically updated approximately 30 minutes after a certificate is revoked. If for any reason a CRL update fails, Amazon Web Services Private CA makes further attempts every 15 minutes.

" + "RevocationConfiguration$CrlConfiguration": "

Configuration of the certificate revocation list (CRL), if any, maintained by your private CA. A CRL is typically updated approximately 30 minutes after a certificate is revoked. If for any reason a CRL update fails, ACM Private CA makes further attempts every 15 minutes.

" } }, "CsrBlob": { @@ -470,8 +470,8 @@ "IdempotencyToken": { "base": null, "refs": { - "CreateCertificateAuthorityRequest$IdempotencyToken": "

Custom string that can be used to distinguish between calls to the CreateCertificateAuthority action. Idempotency tokens for CreateCertificateAuthority time out after five minutes. Therefore, if you call CreateCertificateAuthority multiple times with the same idempotency token within five minutes, Amazon Web Services Private CA recognizes that you are requesting only certificate authority and will issue only one. If you change the idempotency token for each call, PCA recognizes that you are requesting multiple certificate authorities.

", - "IssueCertificateRequest$IdempotencyToken": "

Alphanumeric string that can be used to distinguish between calls to the IssueCertificate action. Idempotency tokens for IssueCertificate time out after one minute. Therefore, if you call IssueCertificate multiple times with the same idempotency token within one minute, Amazon Web Services Private CA recognizes that you are requesting only one certificate and will issue only one. If you change the idempotency token for each call, PCA recognizes that you are requesting multiple certificates.

" + "CreateCertificateAuthorityRequest$IdempotencyToken": "

Custom string that can be used to distinguish between calls to the CreateCertificateAuthority action. Idempotency tokens for CreateCertificateAuthority time out after five minutes. Therefore, if you call CreateCertificateAuthority multiple times with the same idempotency token within five minutes, ACM Private CA recognizes that you are requesting only certificate authority and will issue only one. If you change the idempotency token for each call, PCA recognizes that you are requesting multiple certificate authorities.

", + "IssueCertificateRequest$IdempotencyToken": "

Alphanumeric string that can be used to distinguish between calls to the IssueCertificate action. Idempotency tokens for IssueCertificate time out after one minute. Therefore, if you call IssueCertificate multiple times with the same idempotency token within one minute, ACM Private CA recognizes that you are requesting only one certificate and will issue only one. If you change the idempotency token for each call, PCA recognizes that you are requesting multiple certificates.

" } }, "ImportCertificateAuthorityCertificateRequest": { @@ -551,7 +551,7 @@ } }, "LimitExceededException": { - "base": "

An Amazon Web Services Private CA quota has been exceeded. See the exception message returned to determine the quota that was exceeded.

", + "base": "

An ACM Private CA quota has been exceeded. See the exception message returned to determine the quota that was exceeded.

", "refs": { } }, @@ -667,7 +667,7 @@ } }, "PolicyQualifierInfo": { - "base": "

Modifies the CertPolicyId of a PolicyInformation object with a qualifier. Amazon Web Services Private CA supports the certification practice statement (CPS) qualifier.

", + "base": "

Modifies the CertPolicyId of a PolicyInformation object with a qualifier. ACM Private CA supports the certification practice statement (CPS) qualifier.

", "refs": { "PolicyQualifierInfoList$member": null } @@ -675,7 +675,7 @@ "PolicyQualifierInfoList": { "base": null, "refs": { - "PolicyInformation$PolicyQualifiers": "

Modifies the given CertPolicyId with a qualifier. Amazon Web Services Private CA supports the certification practice statement (CPS) qualifier.

" + "PolicyInformation$PolicyQualifiers": "

Modifies the given CertPolicyId with a qualifier. ACM Private CA supports the certification practice statement (CPS) qualifier.

" } }, "PositiveLong": { @@ -698,9 +698,9 @@ } }, "Qualifier": { - "base": "

Defines a PolicyInformation qualifier. Amazon Web Services Private CA supports the certification practice statement (CPS) qualifier defined in RFC 5280.

", + "base": "

Defines a PolicyInformation qualifier. ACM Private CA supports the certification practice statement (CPS) qualifier defined in RFC 5280.

", "refs": { - "PolicyQualifierInfo$Qualifier": "

Defines the qualifier type. Amazon Web Services Private CA supports the use of a URI for a CPS qualifier in this field.

" + "PolicyQualifierInfo$Qualifier": "

Defines the qualifier type. ACM Private CA supports the use of a URI for a CPS qualifier in this field.

" } }, "RequestAlreadyProcessedException": { @@ -735,7 +735,7 @@ } }, "RevocationConfiguration": { - "base": "

Certificate revocation information used by the CreateCertificateAuthority and UpdateCertificateAuthority actions. Your private certificate authority (CA) can configure Online Certificate Status Protocol (OCSP) support and/or maintain a certificate revocation list (CRL). OCSP returns validation information about certificates as requested by clients, and a CRL contains an updated list of certificates revoked by your CA. For more information, see RevokeCertificate and Setting up a certificate revocation method in the Amazon Web Services Private Certificate Authority User Guide.

", + "base": "

Certificate revocation information used by the CreateCertificateAuthority and UpdateCertificateAuthority actions. Your private certificate authority (CA) can configure Online Certificate Status Protocol (OCSP) support and/or maintain a certificate revocation list (CRL). OCSP returns validation information about certificates as requested by clients, and a CRL contains an updated list of certificates revoked by your CA. For more information, see RevokeCertificate and Setting up a certificate revocation method in the Certificate Manager Private Certificate Authority (PCA) User Guide.

", "refs": { "CertificateAuthority$RevocationConfiguration": "

Information about the Online Certificate Status Protocol (OCSP) configuration or certificate revocation list (CRL) created and maintained by your private CA.

", "CreateCertificateAuthorityRequest$RevocationConfiguration": "

Contains information to enable Online Certificate Status Protocol (OCSP) support, to enable a certificate revocation list (CRL), to enable both, or to enable neither. The default is for both certificate validation mechanisms to be disabled. For more information, see the OcspConfiguration and CrlConfiguration types.

", @@ -832,7 +832,7 @@ "CrlConfiguration$CustomCname": "

Name inserted into the certificate CRL Distribution Points extension that enables the use of an alias for the CRL distribution point. Use this value if you don't want the name of your S3 bucket to be public.

", "GeneralName$DnsName": "

Represents GeneralName as a DNS name.

", "GeneralName$UniformResourceIdentifier": "

Represents GeneralName as a URI.

", - "OcspConfiguration$OcspCustomCname": "

By default, Amazon Web Services Private CA injects an Amazon Web Services domain into certificates being validated by the Online Certificate Status Protocol (OCSP). A customer can alternatively use this object to define a CNAME specifying a customized OCSP domain.

Note: The value of the CNAME must not include a protocol prefix such as \"http://\" or \"https://\".

For more information, see Customizing Online Certificate Status Protocol (OCSP) in the Amazon Web Services Private Certificate Authority User Guide.

" + "OcspConfiguration$OcspCustomCname": "

By default, ACM Private CA injects an Amazon Web Services domain into certificates being validated by the Online Certificate Status Protocol (OCSP). A customer can alternatively use this object to define a CNAME specifying a customized OCSP domain.

Note: The value of the CNAME must not include a protocol prefix such as \"http://\" or \"https://\".

For more information, see Customizing Online Certificate Status Protocol (OCSP) in the Certificate Manager Private Certificate Authority (PCA) User Guide.

" } }, "String256": { @@ -860,7 +860,7 @@ "String3To255": { "base": null, "refs": { - "CrlConfiguration$S3BucketName": "

Name of the S3 bucket that contains the CRL. If you do not provide a value for the CustomCname argument, the name of your S3 bucket is placed into the CRL Distribution Points extension of the issued certificate. You can change the name of your bucket by calling the UpdateCertificateAuthority operation. You must specify a bucket policy that allows Amazon Web Services Private CA to write the CRL to your bucket.

" + "CrlConfiguration$S3BucketName": "

Name of the S3 bucket that contains the CRL. If you do not provide a value for the CustomCname argument, the name of your S3 bucket is placed into the CRL Distribution Points extension of the issued certificate. You can change the name of your bucket by calling the UpdateCertificateAuthority operation. You must specify a bucket policy that allows ACM Private CA to write the CRL to your bucket.

" } }, "String40": { @@ -944,16 +944,16 @@ } }, "Validity": { - "base": "

Validity specifies the period of time during which a certificate is valid. Validity can be expressed as an explicit date and time when the validity of a certificate starts or expires, or as a span of time after issuance, stated in days, months, or years. For more information, see Validity in RFC 5280.

Amazon Web Services Private CA API consumes the Validity data type differently in two distinct parameters of the IssueCertificate action. The required parameter IssueCertificate:Validity specifies the end of a certificate's validity period. The optional parameter IssueCertificate:ValidityNotBefore specifies a customized starting time for the validity period.

", + "base": "

Validity specifies the period of time during which a certificate is valid. Validity can be expressed as an explicit date and time when the validity of a certificate starts or expires, or as a span of time after issuance, stated in days, months, or years. For more information, see Validity in RFC 5280.

ACM Private CA API consumes the Validity data type differently in two distinct parameters of the IssueCertificate action. The required parameter IssueCertificate:Validity specifies the end of a certificate's validity period. The optional parameter IssueCertificate:ValidityNotBefore specifies a customized starting time for the validity period.

", "refs": { "IssueCertificateRequest$Validity": "

Information describing the end of the validity period of the certificate. This parameter sets the “Not After” date for the certificate.

Certificate validity is the period of time during which a certificate is valid. Validity can be expressed as an explicit date and time when the certificate expires, or as a span of time after issuance, stated in days, months, or years. For more information, see Validity in RFC 5280.

This value is unaffected when ValidityNotBefore is also specified. For example, if Validity is set to 20 days in the future, the certificate will expire 20 days from issuance time regardless of the ValidityNotBefore value.

The end of the validity period configured on a certificate must not exceed the limit set on its parents in the CA hierarchy.

", - "IssueCertificateRequest$ValidityNotBefore": "

Information describing the start of the validity period of the certificate. This parameter sets the “Not Before\" date for the certificate.

By default, when issuing a certificate, Amazon Web Services Private CA sets the \"Not Before\" date to the issuance time minus 60 minutes. This compensates for clock inconsistencies across computer systems. The ValidityNotBefore parameter can be used to customize the “Not Before” value.

Unlike the Validity parameter, the ValidityNotBefore parameter is optional.

The ValidityNotBefore value is expressed as an explicit date and time, using the Validity type value ABSOLUTE. For more information, see Validity in this API reference and Validity in RFC 5280.

" + "IssueCertificateRequest$ValidityNotBefore": "

Information describing the start of the validity period of the certificate. This parameter sets the “Not Before\" date for the certificate.

By default, when issuing a certificate, ACM Private CA sets the \"Not Before\" date to the issuance time minus 60 minutes. This compensates for clock inconsistencies across computer systems. The ValidityNotBefore parameter can be used to customize the “Not Before” value.

Unlike the Validity parameter, the ValidityNotBefore parameter is optional.

The ValidityNotBefore value is expressed as an explicit date and time, using the Validity type value ABSOLUTE. For more information, see Validity in this API reference and Validity in RFC 5280.

" } }, "ValidityPeriodType": { "base": null, "refs": { - "Validity$Type": "

Determines how Amazon Web Services Private CA interprets the Value parameter, an integer. Supported validity types include those listed below. Type definitions with values include a sample input value and the resulting output.

END_DATE: The specific date and time when the certificate will expire, expressed using UTCTime (YYMMDDHHMMSS) or GeneralizedTime (YYYYMMDDHHMMSS) format. When UTCTime is used, if the year field (YY) is greater than or equal to 50, the year is interpreted as 19YY. If the year field is less than 50, the year is interpreted as 20YY.

ABSOLUTE: The specific date and time when the validity of a certificate will start or expire, expressed in seconds since the Unix Epoch.

DAYS, MONTHS, YEARS: The relative time from the moment of issuance until the certificate will expire, expressed in days, months, or years.

Example if DAYS, issued on 10/12/2020 at 12:34:54 UTC:

The minimum validity duration for a certificate using relative time (DAYS) is one day. The minimum validity for a certificate using absolute time (ABSOLUTE or END_DATE) is one second.

" + "Validity$Type": "

Determines how ACM Private CA interprets the Value parameter, an integer. Supported validity types include those listed below. Type definitions with values include a sample input value and the resulting output.

END_DATE: The specific date and time when the certificate will expire, expressed using UTCTime (YYMMDDHHMMSS) or GeneralizedTime (YYYYMMDDHHMMSS) format. When UTCTime is used, if the year field (YY) is greater than or equal to 50, the year is interpreted as 19YY. If the year field is less than 50, the year is interpreted as 20YY.

ABSOLUTE: The specific date and time when the validity of a certificate will start or expire, expressed in seconds since the Unix Epoch.

DAYS, MONTHS, YEARS: The relative time from the moment of issuance until the certificate will expire, expressed in days, months, or years.

Example if DAYS, issued on 10/12/2020 at 12:34:54 UTC:

The minimum validity duration for a certificate using relative time (DAYS) is one day. The minimum validity for a certificate using absolute time (ABSOLUTE or END_DATE) is one second.

" } } } diff --git a/models/apis/medialive/2017-10-14/api-2.json b/models/apis/medialive/2017-10-14/api-2.json index a5fc2c8d761..4de281cf527 100644 --- a/models/apis/medialive/2017-10-14/api-2.json +++ b/models/apis/medialive/2017-10-14/api-2.json @@ -3623,6 +3623,10 @@ "shape": "LogLevel", "locationName": "logLevel" }, + "Maintenance": { + "shape": "MaintenanceStatus", + "locationName": "maintenance" + }, "Name": { "shape": "__string", "locationName": "name" @@ -3737,6 +3741,10 @@ "shape": "LogLevel", "locationName": "logLevel" }, + "Maintenance": { + "shape": "MaintenanceStatus", + "locationName": "maintenance" + }, "Name": { "shape": "__string", "locationName": "name" @@ -3826,6 +3834,10 @@ "shape": "LogLevel", "locationName": "logLevel" }, + "Maintenance": { + "shape": "MaintenanceCreateSettings", + "locationName": "maintenance" + }, "Name": { "shape": "__string", "locationName": "name" @@ -3885,6 +3897,10 @@ "shape": "LogLevel", "locationName": "logLevel" }, + "Maintenance": { + "shape": "MaintenanceCreateSettings", + "locationName": "maintenance" + }, "Name": { "shape": "__string", "locationName": "name" @@ -4359,6 +4375,10 @@ "shape": "LogLevel", "locationName": "logLevel" }, + "Maintenance": { + "shape": "MaintenanceStatus", + "locationName": "maintenance" + }, "Name": { "shape": "__string", "locationName": "name" @@ -4710,6 +4730,10 @@ "shape": "LogLevel", "locationName": "logLevel" }, + "Maintenance": { + "shape": "MaintenanceStatus", + "locationName": "maintenance" + }, "Name": { "shape": "__string", "locationName": "name" @@ -9305,6 +9329,69 @@ "PASSTHROUGH" ] }, + "MaintenanceCreateSettings": { + "type": "structure", + "members": { + "MaintenanceDay": { + "shape": "MaintenanceDay", + "locationName": "maintenanceDay" + }, + "MaintenanceStartTime": { + "shape": "__stringPattern010920300", + "locationName": "maintenanceStartTime" + } + } + }, + "MaintenanceDay": { + "type": "string", + "enum": [ + "MONDAY", + "TUESDAY", + "WEDNESDAY", + "THURSDAY", + "FRIDAY", + "SATURDAY", + "SUNDAY" + ] + }, + "MaintenanceStatus": { + "type": "structure", + "members": { + "MaintenanceDay": { + "shape": "MaintenanceDay", + "locationName": "maintenanceDay" + }, + "MaintenanceDeadline": { + "shape": "__string", + "locationName": "maintenanceDeadline" + }, + "MaintenanceScheduledDate": { + "shape": "__string", + "locationName": "maintenanceScheduledDate" + }, + "MaintenanceStartTime": { + "shape": "__string", + "locationName": "maintenanceStartTime" + } + } + }, + "MaintenanceUpdateSettings": { + "type": "structure", + "members": { + "MaintenanceDay": { + "shape": "MaintenanceDay", + "locationName": "maintenanceDay" + }, + "MaintenanceScheduledDate": { + "shape": "__string", + "locationName": "maintenanceScheduledDate" + }, + "MaintenanceStartTime": { + "shape": "__stringPattern010920300", + "locationName": "maintenanceStartTime" + } + } + }, "MaxResults": { "type": "integer", "min": 1, @@ -11466,6 +11553,10 @@ "shape": "LogLevel", "locationName": "logLevel" }, + "Maintenance": { + "shape": "MaintenanceStatus", + "locationName": "maintenance" + }, "Name": { "shape": "__string", "locationName": "name" @@ -11696,6 +11787,10 @@ "shape": "LogLevel", "locationName": "logLevel" }, + "Maintenance": { + "shape": "MaintenanceStatus", + "locationName": "maintenance" + }, "Name": { "shape": "__string", "locationName": "name" @@ -12109,6 +12204,10 @@ "shape": "LogLevel", "locationName": "logLevel" }, + "Maintenance": { + "shape": "MaintenanceUpdateSettings", + "locationName": "maintenance" + }, "Name": { "shape": "__string", "locationName": "name" @@ -12198,6 +12297,10 @@ "shape": "LogLevel", "locationName": "logLevel" }, + "Maintenance": { + "shape": "MaintenanceUpdateSettings", + "locationName": "maintenance" + }, "Name": { "shape": "__string", "locationName": "name" @@ -13517,6 +13620,10 @@ "min": 6, "max": 6 }, + "__stringPattern010920300": { + "type": "string", + "pattern": "^([0,1]?[0-9]|2[0-3]):00$" + }, "__timestampIso8601": { "type": "timestamp", "timestampFormat": "iso8601" diff --git a/models/apis/medialive/2017-10-14/docs-2.json b/models/apis/medialive/2017-10-14/docs-2.json index ddce0ad49c3..a98a876fa8f 100644 --- a/models/apis/medialive/2017-10-14/docs-2.json +++ b/models/apis/medialive/2017-10-14/docs-2.json @@ -2211,6 +2211,33 @@ "M3u8Settings$TimedMetadataBehavior": "When set to passthrough, timed metadata is passed through from input to output." } }, + "MaintenanceCreateSettings": { + "base": null, + "refs": { + "CreateChannel$Maintenance": "Maintenance settings for this channel." + } + }, + "MaintenanceDay": { + "base": "The currently selected maintenance day.", + "refs": { + "MaintenanceCreateSettings$MaintenanceDay": "Choose one day of the week for maintenance. The chosen day is used for all future maintenance windows.", + "MaintenanceStatus$MaintenanceDay": "The currently selected maintenance day.", + "MaintenanceUpdateSettings$MaintenanceDay": "Choose one day of the week for maintenance. The chosen day is used for all future maintenance windows." + } + }, + "MaintenanceStatus": { + "base": null, + "refs": { + "Channel$Maintenance": "Maintenance settings for this channel.", + "ChannelSummary$Maintenance": "Maintenance settings for this channel." + } + }, + "MaintenanceUpdateSettings": { + "base": null, + "refs": { + "UpdateChannel$Maintenance": "Maintenance settings for this channel." + } + }, "MediaConnectFlow": { "base": "The settings for a MediaConnect Flow.", "refs": { @@ -3170,7 +3197,7 @@ "TtmlDestinationStyleControl": { "base": "Ttml Destination Style Control", "refs": { - "TtmlDestinationSettings$StyleControl": "When set to passthrough, passes through style and position information from a TTML-like input source (TTML, SMPTE-TT, CFF-TT) to the CFF-TT output or TTML output." + "TtmlDestinationSettings$StyleControl": "This field is not currently supported and will not affect the output styling. Leave the default value." } }, "UdpContainerSettings": { @@ -4294,7 +4321,6 @@ "ArchiveOutputSettings$Extension": "Output file extension. If excluded, this will be auto-selected from the container type.", "ArchiveOutputSettings$NameModifier": "String concatenated to the end of the destination filename. Required for multiple outputs of the same type.", "AudioDescription$AudioSelectorName": "The name of the AudioSelector used as the source for this AudioDescription.", - "AudioDescription$Name": "The name of this AudioDescription. Outputs will use this name to uniquely identify this AudioDescription. Description names should be unique within this Live Event.", "AudioDescription$StreamName": "Used for MS Smooth and Apple HLS outputs. Indicates the name displayed by the player (eg. English, or Director Commentary).", "AudioLanguageSelection$LanguageCode": "Selects a specific three-letter language code from within an audio source.", "AudioOnlyHlsSettings$AudioGroupId": "Specifies the group to which the audio Rendition belongs.", @@ -4316,12 +4342,14 @@ "CaptionSelector$LanguageCode": "When specified this field indicates the three letter language code of the caption track to extract from the source.", "Channel$Arn": "The unique arn of the channel.", "Channel$Id": "The unique id of the channel.", + "Channel$MaintenanceStatus": "The time in milliseconds by when the PVRE restart must occur.", "Channel$Name": "The name of the channel. (user-mutable)", "Channel$RoleArn": "The Amazon Resource Name (ARN) of the role assumed when running the Channel.", "ChannelConfigurationValidationError$Message": null, "ChannelEgressEndpoint$SourceIp": "Public IP of where a channel's output comes from", "ChannelSummary$Arn": "The unique arn of the channel.", "ChannelSummary$Id": "The unique id of the channel.", + "ChannelSummary$MaintenanceStatus": "The time in milliseconds when the PVRE maintenance must occur by.", "ChannelSummary$Name": "The name of the channel. (user-mutable)", "ChannelSummary$RoleArn": "The Amazon Resource Name (ARN) of the role assumed when running the Channel.", "ClaimDeviceRequest$Id": "The id of the device you want to claim.", @@ -4337,6 +4365,7 @@ "CreateMultiplexProgram$ProgramName": "Name of multiplex program.", "CreateMultiplexProgram$RequestId": "Unique request ID. This prevents retries from creating multiple\nresources.\n", "CreatePartnerInput$RequestId": "Unique identifier of the request to ensure the request is handled\nexactly once in case of retries.\n", + "DescribeAnywhereSettings$ClusterName": "The name of the cluster that is the instance provider for the channel", "DvbSubDestinationSettings$FontSize": "When set to auto fontSize will scale depending on the size of the output. Giving a positive integer will specify the exact font size in points. All burn-in and DVB-Sub font settings must match.", "EbuTtDDestinationSettings$FontFamily": "Specifies the font family to include in the font data attached to the EBU-TT captions. Valid only if styleControl is set to include. If you leave this field empty, the font family is set to \"monospaced\". (If styleControl is set to exclude, the font family is always set to \"monospaced\".)\n\nYou specify only the font family. All other style information (color, bold, position and so on) is copied from the input captions. The size is always set to 100% to allow the downstream player to choose the size.\n\n- Enter a list of font families, as a comma-separated list of font names, in order of preference. The name can be a font family (such as \u201cArial\u201d), or a generic font family (such as \u201cserif\u201d), or \u201cdefault\u201d (to let the downstream player choose the font).\n- Leave blank to set the family to \u201cmonospace\u201d.", "FixedModeScheduleActionStartSettings$Time": "Start time for the action to start in the channel. (Not the time for the action to be added to the schedule: actions are always added to the schedule immediately.) UTC format: yyyy-mm-ddThh:mm:ss.nnnZ. All the letters are digits (for example, mm might be 01) except for the two constants \"T\" for time and \"Z\" for \"UTC format\".", @@ -4431,6 +4460,10 @@ "M3u8Settings$Scte35Pid": "Packet Identifier (PID) of the SCTE-35 stream in the transport stream. Can be entered as a decimal or hexadecimal value.", "M3u8Settings$TimedMetadataPid": "Packet Identifier (PID) of the timed metadata stream in the transport stream. Can be entered as a decimal or hexadecimal value. Valid values are 32 (or 0x20)..8182 (or 0x1ff6).", "M3u8Settings$VideoPid": "Packet Identifier (PID) of the elementary video stream in the transport stream. Can be entered as a decimal or hexadecimal value.", + "MaintenanceStatus$MaintenanceDeadline": "Maintenance is required by the displayed date and time. Date and time is in ISO.", + "MaintenanceStatus$MaintenanceScheduledDate": "The currently scheduled maintenance date and time. Date and time is in ISO.", + "MaintenanceStatus$MaintenanceStartTime": "The currently selected maintenance start time. Time is in UTC.", + "MaintenanceUpdateSettings$MaintenanceScheduledDate": "Choose a specific date for maintenance to occur. The chosen date is used for the next maintenance window only.", "MediaConnectFlow$FlowArn": "The unique ARN of the MediaConnect Flow being used as a source.", "MediaConnectFlowRequest$FlowArn": "The ARN of the MediaConnect Flow that you want to use as a source.", "MotionGraphicsActivateScheduleActionSettings$PasswordParam": "Key used to extract the password from EC2 Parameter store", @@ -4516,7 +4549,7 @@ "__stringMax1000": { "base": null, "refs": { - "EbuTtDDestinationSettings$CopyrightHolder": "Applies only if you plan to convert these source captions to EBU-TT-D or TTML in an output. Complete this field if you want to include the name of the copyright holder in the copyright metadata tag in the TTML" + "EbuTtDDestinationSettings$CopyrightHolder": "Complete this field if you want to include the name of the copyright holder in the copyright tag in the captions metadata." } }, "__stringMax256": { @@ -4529,7 +4562,7 @@ "__stringMax32": { "base": null, "refs": { - "OutputGroup$Name": "Custom output group name optionally defined by the user. Only letters, numbers, and the underscore character allowed; only 32 characters allowed." + "OutputGroup$Name": "Custom output group name optionally defined by the user." } }, "__stringMin1": { @@ -4604,6 +4637,13 @@ "refs": { "InputLossBehavior$InputLossImageColor": "When input loss image type is \"color\" this field specifies the color to use. Value: 6 hex characters representing the values of RGB." } + }, + "__stringPattern010920300": { + "base": null, + "refs": { + "MaintenanceCreateSettings$MaintenanceStartTime": "Choose the hour that maintenance will start. The chosen time is used for all future maintenance windows.", + "MaintenanceUpdateSettings$MaintenanceStartTime": "Choose the hour that maintenance will start. The chosen time is used for all future maintenance windows." + } } } } diff --git a/models/endpoints/endpoints.json b/models/endpoints/endpoints.json index 8004871c266..67e514269d7 100644 --- a/models/endpoints/endpoints.json +++ b/models/endpoints/endpoints.json @@ -8851,7 +8851,9 @@ }, "profile" : { "endpoints" : { + "af-south-1" : { }, "ap-northeast-1" : { }, + "ap-northeast-2" : { }, "ap-southeast-1" : { }, "ap-southeast-2" : { }, "ca-central-1" : { }, @@ -17962,6 +17964,11 @@ "us-iso-east-1" : { } } }, + "tagging" : { + "endpoints" : { + "us-iso-east-1" : { } + } + }, "transcribe" : { "defaults" : { "protocols" : [ "https" ] diff --git a/service/acmpca/api.go b/service/acmpca/api.go index 70d2d7f573e..3cbe0655f49 100644 --- a/service/acmpca/api.go +++ b/service/acmpca/api.go @@ -70,9 +70,8 @@ func (c *ACMPCA) CreateCertificateAuthorityRequest(input *CreateCertificateAutho // that is included in certificates issued by the CA. If successful, this action // returns the Amazon Resource Name (ARN) of the CA. // -// Amazon Web Services Private CA assets that are stored in Amazon S3 can be -// protected with encryption. For more information, see Encrypting Your CRLs -// (https://docs.aws.amazon.com/acm-pca/latest/userguide/PcaCreateCa.html#crl-encryption). +// ACM Private CA assets that are stored in Amazon S3 can be protected with +// encryption. For more information, see Encrypting Your CRLs (https://docs.aws.amazon.com/acm-pca/latest/userguide/PcaCreateCa.html#crl-encryption). // // Both PCA and the IAM principal must have permission to write to the S3 bucket // that you specify. If the IAM principal making the call does not have permission @@ -100,8 +99,8 @@ func (c *ACMPCA) CreateCertificateAuthorityRequest(input *CreateCertificateAutho // in the message field. // // * LimitExceededException -// An Amazon Web Services Private CA quota has been exceeded. See the exception -// message returned to determine the quota that was exceeded. +// An ACM Private CA quota has been exceeded. See the exception message returned +// to determine the quota that was exceeded. // // See also, https://docs.aws.amazon.com/goto/WebAPI/acm-pca-2017-08-22/CreateCertificateAuthority func (c *ACMPCA) CreateCertificateAuthority(input *CreateCertificateAuthorityInput) (*CreateCertificateAuthorityOutput, error) { @@ -180,9 +179,8 @@ func (c *ACMPCA) CreateCertificateAuthorityAuditReportRequest(input *CreateCerti // to write to the bucket, then an exception is thrown. For more information, // see Access policies for CRLs in Amazon S3 (https://docs.aws.amazon.com/acm-pca/latest/userguide/crl-planning.html#s3-policies). // -// Amazon Web Services Private CA assets that are stored in Amazon S3 can be -// protected with encryption. For more information, see Encrypting Your Audit -// Reports (https://docs.aws.amazon.com/acm-pca/latest/userguide/PcaAuditReport.html#audit-report-encryption). +// ACM Private CA assets that are stored in Amazon S3 can be protected with +// encryption. For more information, see Encrypting Your Audit Reports (https://docs.aws.amazon.com/acm-pca/latest/userguide/PcaAuditReport.html#audit-report-encryption). // // You can generate a maximum of one report every 30 minutes. // @@ -302,7 +300,7 @@ func (c *ACMPCA) CreatePermissionRequest(input *CreatePermissionInput) (req *req // then permissions cannot be used to enable automatic renewals. Instead, // the ACM certificate owner must set up a resource-based policy to enable // cross-account issuance and renewals. For more information, see Using a -// Resource Based Policy with Amazon Web Services Private CA (https://docs.aws.amazon.com/acm-pca/latest/userguide/pca-rbp.html). +// Resource Based Policy with ACM Private CA (https://docs.aws.amazon.com/acm-pca/latest/userguide/pca-rbp.html). // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about @@ -323,8 +321,8 @@ func (c *ACMPCA) CreatePermissionRequest(input *CreatePermissionInput) (req *req // The designated permission has already been given to the user. // // * LimitExceededException -// An Amazon Web Services Private CA quota has been exceeded. See the exception -// message returned to determine the quota that was exceeded. +// An ACM Private CA quota has been exceeded. See the exception message returned +// to determine the quota that was exceeded. // // * InvalidStateException // The state of the private CA does not allow this action to occur. @@ -414,7 +412,7 @@ func (c *ACMPCA) DeleteCertificateAuthorityRequest(input *DeleteCertificateAutho // Additionally, you can delete a CA if you are waiting for it to be created // (that is, the status of the CA is CREATING). You can also delete it if the // CA has been created but you haven't yet imported the signed certificate into -// Amazon Web Services Private CA (that is, the status of the CA is PENDING_CERTIFICATE). +// ACM Private CA (that is, the status of the CA is PENDING_CERTIFICATE). // // When you successfully call DeleteCertificateAuthority (https://docs.aws.amazon.com/acm-pca/latest/APIReference/API_DeleteCertificateAuthority.html), // the CA's status changes to DELETED. However, the CA won't be permanently @@ -539,7 +537,7 @@ func (c *ACMPCA) DeletePermissionRequest(input *DeletePermissionInput) (req *req // then permissions cannot be used to enable automatic renewals. Instead, // the ACM certificate owner must set up a resource-based policy to enable // cross-account issuance and renewals. For more information, see Using a -// Resource Based Policy with Amazon Web Services Private CA (https://docs.aws.amazon.com/acm-pca/latest/userguide/pca-rbp.html). +// Resource Based Policy with ACM Private CA (https://docs.aws.amazon.com/acm-pca/latest/userguide/pca-rbp.html). // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about @@ -648,8 +646,8 @@ func (c *ACMPCA) DeletePolicyRequest(input *DeletePolicyInput) (req *request.Req // * A policy grants access on a private CA to an Amazon Web Services customer // account, to Amazon Web Services Organizations, or to an Amazon Web Services // Organizations unit. Policies are under the control of a CA administrator. -// For more information, see Using a Resource Based Policy with Amazon Web -// Services Private CA (https://docs.aws.amazon.com/acm-pca/latest/userguide/pca-rbp.html). +// For more information, see Using a Resource Based Policy with ACM Private +// CA (https://docs.aws.amazon.com/acm-pca/latest/userguide/pca-rbp.html). // // * A policy permits a user of Certificate Manager (ACM) to issue ACM certificates // signed by a CA in another account. @@ -657,8 +655,8 @@ func (c *ACMPCA) DeletePolicyRequest(input *DeletePolicyInput) (req *request.Req // * For ACM to manage automatic renewal of these certificates, the ACM user // must configure a Service Linked Role (SLR). The SLR allows the ACM service // to assume the identity of the user, subject to confirmation against the -// Amazon Web Services Private CA policy. For more information, see Using -// a Service Linked Role with ACM (https://docs.aws.amazon.com/acm/latest/userguide/acm-slr.html). +// ACM Private CA policy. For more information, see Using a Service Linked +// Role with ACM (https://docs.aws.amazon.com/acm/latest/userguide/acm-slr.html). // // * Updates made in Amazon Web Services Resource Manager (RAM) are reflected // in policies. For more information, see Attach a Policy for Cross-Account @@ -764,12 +762,11 @@ func (c *ACMPCA) DescribeCertificateAuthorityRequest(input *DescribeCertificateA // (Amazon Resource Name). The output contains the status of your CA. This can // be any of the following: // -// * CREATING - Amazon Web Services Private CA is creating your private certificate -// authority. +// * CREATING - ACM Private CA is creating your private certificate authority. // // * PENDING_CERTIFICATE - The certificate is pending. You must use your -// Amazon Web Services Private CA-hosted or on-premises root or subordinate -// CA to sign your private CA CSR and then import it into PCA. +// ACM Private CA-hosted or on-premises root or subordinate CA to sign your +// private CA CSR and then import it into PCA. // // * ACTIVE - Your private CA is active. // @@ -1151,10 +1148,9 @@ func (c *ACMPCA) GetCertificateAuthorityCsrRequest(input *GetCertificateAuthorit // Retrieves the certificate signing request (CSR) for your private certificate // authority (CA). The CSR is created when you call the CreateCertificateAuthority // (https://docs.aws.amazon.com/acm-pca/latest/APIReference/API_CreateCertificateAuthority.html) -// action. Sign the CSR with your Amazon Web Services Private CA-hosted or on-premises -// root or subordinate CA. Then import the signed certificate back into Amazon -// Web Services Private CA by calling the ImportCertificateAuthorityCertificate -// (https://docs.aws.amazon.com/acm-pca/latest/APIReference/API_ImportCertificateAuthorityCertificate.html) +// action. Sign the CSR with your ACM Private CA-hosted or on-premises root +// or subordinate CA. Then import the signed certificate back into ACM Private +// CA by calling the ImportCertificateAuthorityCertificate (https://docs.aws.amazon.com/acm-pca/latest/APIReference/API_ImportCertificateAuthorityCertificate.html) // action. The CSR is returned as a base64 PEM-encoded string. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions @@ -1259,8 +1255,8 @@ func (c *ACMPCA) GetPolicyRequest(input *GetPolicyInput) (req *request.Request, // * A policy grants access on a private CA to an Amazon Web Services customer // account, to Amazon Web Services Organizations, or to an Amazon Web Services // Organizations unit. Policies are under the control of a CA administrator. -// For more information, see Using a Resource Based Policy with Amazon Web -// Services Private CA (https://docs.aws.amazon.com/acm-pca/latest/userguide/pca-rbp.html). +// For more information, see Using a Resource Based Policy with ACM Private +// CA (https://docs.aws.amazon.com/acm-pca/latest/userguide/pca-rbp.html). // // * A policy permits a user of Certificate Manager (ACM) to issue ACM certificates // signed by a CA in another account. @@ -1268,8 +1264,8 @@ func (c *ACMPCA) GetPolicyRequest(input *GetPolicyInput) (req *request.Request, // * For ACM to manage automatic renewal of these certificates, the ACM user // must configure a Service Linked Role (SLR). The SLR allows the ACM service // to assume the identity of the user, subject to confirmation against the -// Amazon Web Services Private CA policy. For more information, see Using -// a Service Linked Role with ACM (https://docs.aws.amazon.com/acm/latest/userguide/acm-slr.html). +// ACM Private CA policy. For more information, see Using a Service Linked +// Role with ACM (https://docs.aws.amazon.com/acm/latest/userguide/acm-slr.html). // // * Updates made in Amazon Web Services Resource Manager (RAM) are reflected // in policies. For more information, see Attach a Policy for Cross-Account @@ -1363,12 +1359,12 @@ func (c *ACMPCA) ImportCertificateAuthorityCertificateRequest(input *ImportCerti // ImportCertificateAuthorityCertificate API operation for AWS Certificate Manager Private Certificate Authority. // -// Imports a signed private CA certificate into Amazon Web Services Private -// CA. This action is used when you are using a chain of trust whose root is -// located outside Amazon Web Services Private CA. Before you can call this -// action, the following preparations must in place: +// Imports a signed private CA certificate into ACM Private CA. This action +// is used when you are using a chain of trust whose root is located outside +// ACM Private CA. Before you can call this action, the following preparations +// must in place: // -// In Amazon Web Services Private CA, call the CreateCertificateAuthority (https://docs.aws.amazon.com/acm-pca/latest/APIReference/API_CreateCertificateAuthority.html) +// In ACM Private CA, call the CreateCertificateAuthority (https://docs.aws.amazon.com/acm-pca/latest/APIReference/API_CreateCertificateAuthority.html) // action to create the private CA that you plan to back with the imported certificate. // // Call the GetCertificateAuthorityCsr (https://docs.aws.amazon.com/acm-pca/latest/APIReference/API_GetCertificateAuthorityCsr.html) @@ -1380,14 +1376,12 @@ func (c *ACMPCA) ImportCertificateAuthorityCertificateRequest(input *ImportCerti // Create a certificate chain and copy the signed certificate and the certificate // chain to your working directory. // -// Amazon Web Services Private CA supports three scenarios for installing a -// CA certificate: +// ACM Private CA supports three scenarios for installing a CA certificate: // -// * Installing a certificate for a root CA hosted by Amazon Web Services -// Private CA. +// * Installing a certificate for a root CA hosted by ACM Private CA. // // * Installing a subordinate CA certificate whose parent authority is hosted -// by Amazon Web Services Private CA. +// by ACM Private CA. // // * Installing a subordinate CA certificate whose parent authority is externally // hosted. @@ -1414,8 +1408,8 @@ func (c *ACMPCA) ImportCertificateAuthorityCertificateRequest(input *ImportCerti // // Enforcement of Critical Constraints // -// Amazon Web Services Private CA allows the following extensions to be marked -// critical in the imported CA certificate or chain. +// ACM Private CA allows the following extensions to be marked critical in the +// imported CA certificate or chain. // // * Basic constraints (must be marked critical) // @@ -1441,8 +1435,8 @@ func (c *ACMPCA) ImportCertificateAuthorityCertificateRequest(input *ImportCerti // // * Inhibit anyPolicy // -// Amazon Web Services Private CA rejects the following extensions when they -// are marked critical in an imported CA certificate or chain. +// ACM Private CA rejects the following extensions when they are marked critical +// in an imported CA certificate or chain. // // * Name constraints // @@ -1566,8 +1560,7 @@ func (c *ACMPCA) IssueCertificateRequest(input *IssueCertificateInput) (req *req // action and specifying the ARN. // // You cannot use the ACM ListCertificateAuthorities action to retrieve the -// ARNs of the certificates that you issue by using Amazon Web Services Private -// CA. +// ARNs of the certificates that you issue by using ACM Private CA. // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about @@ -1578,8 +1571,8 @@ func (c *ACMPCA) IssueCertificateRequest(input *IssueCertificateInput) (req *req // // Returned Error Types: // * LimitExceededException -// An Amazon Web Services Private CA quota has been exceeded. See the exception -// message returned to determine the quota that was exceeded. +// An ACM Private CA quota has been exceeded. See the exception message returned +// to determine the quota that was exceeded. // // * ResourceNotFoundException // A resource such as a private CA, S3 bucket, certificate, audit report, or @@ -1832,7 +1825,7 @@ func (c *ACMPCA) ListPermissionsRequest(input *ListPermissionsInput) (req *reque // then permissions cannot be used to enable automatic renewals. Instead, // the ACM certificate owner must set up a resource-based policy to enable // cross-account issuance and renewals. For more information, see Using a -// Resource Based Policy with Amazon Web Services Private CA (https://docs.aws.amazon.com/acm-pca/latest/userguide/pca-rbp.html). +// Resource Based Policy with ACM Private CA (https://docs.aws.amazon.com/acm-pca/latest/userguide/pca-rbp.html). // // Returns awserr.Error for service API and SDK errors. Use runtime type assertions // with awserr.Error's Code and Message methods to get detailed information about @@ -2142,8 +2135,8 @@ func (c *ACMPCA) PutPolicyRequest(input *PutPolicyInput) (req *request.Request, // * A policy grants access on a private CA to an Amazon Web Services customer // account, to Amazon Web Services Organizations, or to an Amazon Web Services // Organizations unit. Policies are under the control of a CA administrator. -// For more information, see Using a Resource Based Policy with Amazon Web -// Services Private CA (https://docs.aws.amazon.com/acm-pca/latest/userguide/pca-rbp.html). +// For more information, see Using a Resource Based Policy with ACM Private +// CA (https://docs.aws.amazon.com/acm-pca/latest/userguide/pca-rbp.html). // // * A policy permits a user of Certificate Manager (ACM) to issue ACM certificates // signed by a CA in another account. @@ -2151,8 +2144,8 @@ func (c *ACMPCA) PutPolicyRequest(input *PutPolicyInput) (req *request.Request, // * For ACM to manage automatic renewal of these certificates, the ACM user // must configure a Service Linked Role (SLR). The SLR allows the ACM service // to assume the identity of the user, subject to confirmation against the -// Amazon Web Services Private CA policy. For more information, see Using -// a Service Linked Role with ACM (https://docs.aws.amazon.com/acm/latest/userguide/acm-slr.html). +// ACM Private CA policy. For more information, see Using a Service Linked +// Role with ACM (https://docs.aws.amazon.com/acm/latest/userguide/acm-slr.html). // // * Updates made in Amazon Web Services Resource Manager (RAM) are reflected // in policies. For more information, see Attach a Policy for Cross-Account @@ -2361,25 +2354,23 @@ func (c *ACMPCA) RevokeCertificateRequest(input *RevokeCertificateInput) (req *r // RevokeCertificate API operation for AWS Certificate Manager Private Certificate Authority. // -// Revokes a certificate that was issued inside Amazon Web Services Private -// CA. If you enable a certificate revocation list (CRL) when you create or -// update your private CA, information about the revoked certificates will be -// included in the CRL. Amazon Web Services Private CA writes the CRL to an -// S3 bucket that you specify. A CRL is typically updated approximately 30 minutes -// after a certificate is revoked. If for any reason the CRL update fails, Amazon -// Web Services Private CA attempts makes further attempts every 15 minutes. -// With Amazon CloudWatch, you can create alarms for the metrics CRLGenerated -// and MisconfiguredCRLBucket. For more information, see Supported CloudWatch -// Metrics (https://docs.aws.amazon.com/acm-pca/latest/userguide/PcaCloudWatch.html). +// Revokes a certificate that was issued inside ACM Private CA. If you enable +// a certificate revocation list (CRL) when you create or update your private +// CA, information about the revoked certificates will be included in the CRL. +// ACM Private CA writes the CRL to an S3 bucket that you specify. A CRL is +// typically updated approximately 30 minutes after a certificate is revoked. +// If for any reason the CRL update fails, ACM Private CA attempts makes further +// attempts every 15 minutes. With Amazon CloudWatch, you can create alarms +// for the metrics CRLGenerated and MisconfiguredCRLBucket. For more information, +// see Supported CloudWatch Metrics (https://docs.aws.amazon.com/acm-pca/latest/userguide/PcaCloudWatch.html). // // Both PCA and the IAM principal must have permission to write to the S3 bucket // that you specify. If the IAM principal making the call does not have permission // to write to the bucket, then an exception is thrown. For more information, // see Access policies for CRLs in Amazon S3 (https://docs.aws.amazon.com/acm-pca/latest/userguide/crl-planning.html#s3-policies). // -// Amazon Web Services Private CA also writes revocation information to the -// audit report. For more information, see CreateCertificateAuthorityAuditReport -// (https://docs.aws.amazon.com/acm-pca/latest/APIReference/API_CreateCertificateAuthorityAuditReport.html). +// ACM Private CA also writes revocation information to the audit report. For +// more information, see CreateCertificateAuthorityAuditReport (https://docs.aws.amazon.com/acm-pca/latest/APIReference/API_CreateCertificateAuthorityAuditReport.html). // // You cannot revoke a root CA self-signed certificate. // @@ -2404,8 +2395,8 @@ func (c *ACMPCA) RevokeCertificateRequest(input *RevokeCertificateInput) (req *r // The state of the private CA does not allow this action to occur. // // * LimitExceededException -// An Amazon Web Services Private CA quota has been exceeded. See the exception -// message returned to determine the quota that was exceeded. +// An ACM Private CA quota has been exceeded. See the exception message returned +// to determine the quota that was exceeded. // // * ResourceNotFoundException // A resource such as a private CA, S3 bucket, certificate, audit report, or @@ -3072,8 +3063,7 @@ func (s *AccessMethod) SetCustomObjectIdentifier(v string) *AccessMethod { // or else this parameter is ignored. // // If conflicting or duplicate certificate information is supplied from other -// sources, Amazon Web Services Private CA applies order of operation rules -// (https://docs.aws.amazon.com/acm-pca/latest/userguide/UsingTemplates.html#template-order-of-operations) +// sources, ACM Private CA applies order of operation rules (https://docs.aws.amazon.com/acm-pca/latest/userguide/UsingTemplates.html#template-order-of-operations) // to determine what information is used. type ApiPassthrough struct { _ struct{} `type:"structure"` @@ -3148,9 +3138,8 @@ func (s *ApiPassthrough) SetSubject(v *ASN1Subject) *ApiPassthrough { // action to create your private CA. You must then call the GetCertificateAuthorityCertificate // (https://docs.aws.amazon.com/acm-pca/latest/APIReference/API_GetCertificateAuthorityCertificate.html) // action to retrieve a private CA certificate signing request (CSR). Sign the -// CSR with your Amazon Web Services Private CA-hosted or on-premises root or -// subordinate CA certificate. Call the ImportCertificateAuthorityCertificate -// (https://docs.aws.amazon.com/acm-pca/latest/APIReference/API_ImportCertificateAuthorityCertificate.html) +// CSR with your ACM Private CA-hosted or on-premises root or subordinate CA +// certificate. Call the ImportCertificateAuthorityCertificate (https://docs.aws.amazon.com/acm-pca/latest/APIReference/API_ImportCertificateAuthorityCertificate.html) // action to import the signed certificate into Certificate Manager (ACM). type CertificateAuthority struct { _ struct{} `type:"structure"` @@ -3690,10 +3679,10 @@ type CreateCertificateAuthorityInput struct { // Custom string that can be used to distinguish between calls to the CreateCertificateAuthority // action. Idempotency tokens for CreateCertificateAuthority time out after // five minutes. Therefore, if you call CreateCertificateAuthority multiple - // times with the same idempotency token within five minutes, Amazon Web Services - // Private CA recognizes that you are requesting only certificate authority - // and will issue only one. If you change the idempotency token for each call, - // PCA recognizes that you are requesting multiple certificate authorities. + // times with the same idempotency token within five minutes, ACM Private CA + // recognizes that you are requesting only certificate authority and will issue + // only one. If you change the idempotency token for each call, PCA recognizes + // that you are requesting multiple certificate authorities. IdempotencyToken *string `min:"1" type:"string"` // Specifies a cryptographic key management compliance standard used for handling @@ -3980,11 +3969,10 @@ func (s CreatePermissionOutput) GoString() string { // the name of your bucket by specifying a value for the CustomCname parameter. // Your private CA copies the CNAME or the S3 bucket name to the CRL Distribution // Points extension of each certificate it issues. Your S3 bucket policy must -// give write permission to Amazon Web Services Private CA. +// give write permission to ACM Private CA. // -// Amazon Web Services Private CA assets that are stored in Amazon S3 can be -// protected with encryption. For more information, see Encrypting Your CRLs -// (https://docs.aws.amazon.com/acm-pca/latest/userguide/PcaCreateCa.html#crl-encryption). +// ACM Private CA assets that are stored in Amazon S3 can be protected with +// encryption. For more information, see Encrypting Your CRLs (https://docs.aws.amazon.com/acm-pca/latest/userguide/PcaCreateCa.html#crl-encryption). // // Your private CA uses the value in the ExpirationInDays parameter to calculate // the nextUpdate field in the CRL. The CRL is refreshed prior to a certificate's @@ -3993,8 +3981,8 @@ func (s CreatePermissionOutput) GoString() string { // CRL after expiration, and it always appears in the audit report. // // A CRL is typically updated approximately 30 minutes after a certificate is -// revoked. If for any reason a CRL update fails, Amazon Web Services Private -// CA makes further attempts every 15 minutes. +// revoked. If for any reason a CRL update fails, ACM Private CA makes further +// attempts every 15 minutes. // // CRLs contain the following fields: // @@ -4025,13 +4013,13 @@ func (s CreatePermissionOutput) GoString() string { // // * Signature Value: Signature computed over the CRL. // -// Certificate revocation lists created by Amazon Web Services Private CA are -// DER-encoded. You can use the following OpenSSL command to list a CRL. +// Certificate revocation lists created by ACM Private CA are DER-encoded. You +// can use the following OpenSSL command to list a CRL. // // openssl crl -inform DER -text -in crl_path -noout // // For more information, see Planning a certificate revocation list (CRL) (https://docs.aws.amazon.com/acm-pca/latest/userguide/crl-planning.html) -// in the Amazon Web Services Private Certificate Authority User Guide +// in the Certificate Manager Private Certificate Authority (PCA) User Guide type CrlConfiguration struct { _ struct{} `type:"structure"` @@ -4058,7 +4046,7 @@ type CrlConfiguration struct { // CRL Distribution Points extension of the issued certificate. You can change // the name of your bucket by calling the UpdateCertificateAuthority (https://docs.aws.amazon.com/acm-pca/latest/APIReference/API_UpdateCertificateAuthority.html) // operation. You must specify a bucket policy (https://docs.aws.amazon.com/acm-pca/latest/userguide/PcaCreateCa.html#s3-policies) - // that allows Amazon Web Services Private CA to write the CRL to your bucket. + // that allows ACM Private CA to write the CRL to your bucket. S3BucketName *string `min:"3" type:"string"` // Determines whether the CRL will be publicly readable or privately held in @@ -5590,9 +5578,9 @@ type ImportCertificateAuthorityCertificateInput struct { CertificateAuthorityArn *string `min:"5" type:"string" required:"true"` // A PEM-encoded file that contains all of your certificates, other than the - // certificate you're importing, chaining up to your root CA. Your Amazon Web - // Services Private CA-hosted or on-premises root certificate is the last in - // the chain, and each certificate in the chain signs the one preceding. + // certificate you're importing, chaining up to your root CA. Your ACM Private + // CA-hosted or on-premises root certificate is the last in the chain, and each + // certificate in the chain signs the one preceding. // // This parameter must be supplied when you import a subordinate CA. When you // import a root CA, there is no chain. @@ -6141,8 +6129,7 @@ type IssueCertificateInput struct { // templates, see Understanding Certificate Templates (https://docs.aws.amazon.com/acm-pca/latest/userguide/UsingTemplates.html). // // If conflicting or duplicate certificate information is supplied during certificate - // issuance, Amazon Web Services Private CA applies order of operation rules - // (https://docs.aws.amazon.com/acm-pca/latest/userguide/UsingTemplates.html#template-order-of-operations) + // issuance, ACM Private CA applies order of operation rules (https://docs.aws.amazon.com/acm-pca/latest/userguide/UsingTemplates.html#template-order-of-operations) // to determine what information is used. ApiPassthrough *ApiPassthrough `type:"structure"` @@ -6179,10 +6166,10 @@ type IssueCertificateInput struct { // Alphanumeric string that can be used to distinguish between calls to the // IssueCertificate action. Idempotency tokens for IssueCertificate time out // after one minute. Therefore, if you call IssueCertificate multiple times - // with the same idempotency token within one minute, Amazon Web Services Private - // CA recognizes that you are requesting only one certificate and will issue - // only one. If you change the idempotency token for each call, PCA recognizes - // that you are requesting multiple certificates. + // with the same idempotency token within one minute, ACM Private CA recognizes + // that you are requesting only one certificate and will issue only one. If + // you change the idempotency token for each call, PCA recognizes that you are + // requesting multiple certificates. IdempotencyToken *string `min:"1" type:"string"` // The name of the algorithm that will be used to sign the certificate to be @@ -6198,16 +6185,16 @@ type IssueCertificateInput struct { SigningAlgorithm *string `type:"string" required:"true" enum:"SigningAlgorithm"` // Specifies a custom configuration template to use when issuing a certificate. - // If this parameter is not provided, Amazon Web Services Private CA defaults - // to the EndEntityCertificate/V1 template. For CA certificates, you should - // choose the shortest path length that meets your needs. The path length is - // indicated by the PathLenN portion of the ARN, where N is the CA depth (https://docs.aws.amazon.com/acm-pca/latest/userguide/PcaTerms.html#terms-cadepth). + // If this parameter is not provided, ACM Private CA defaults to the EndEntityCertificate/V1 + // template. For CA certificates, you should choose the shortest path length + // that meets your needs. The path length is indicated by the PathLenN portion + // of the ARN, where N is the CA depth (https://docs.aws.amazon.com/acm-pca/latest/userguide/PcaTerms.html#terms-cadepth). // // Note: The CA depth configured on a subordinate CA certificate must not exceed // the limit set by its parents in the CA hierarchy. // - // For a list of TemplateArn values supported by Amazon Web Services Private - // CA, see Understanding Certificate Templates (https://docs.aws.amazon.com/acm-pca/latest/userguide/UsingTemplates.html). + // For a list of TemplateArn values supported by ACM Private CA, see Understanding + // Certificate Templates (https://docs.aws.amazon.com/acm-pca/latest/userguide/UsingTemplates.html). TemplateArn *string `min:"5" type:"string"` // Information describing the end of the validity period of the certificate. @@ -6232,10 +6219,10 @@ type IssueCertificateInput struct { // Information describing the start of the validity period of the certificate. // This parameter sets the “Not Before" date for the certificate. // - // By default, when issuing a certificate, Amazon Web Services Private CA sets - // the "Not Before" date to the issuance time minus 60 minutes. This compensates - // for clock inconsistencies across computer systems. The ValidityNotBefore - // parameter can be used to customize the “Not Before” value. + // By default, when issuing a certificate, ACM Private CA sets the "Not Before" + // date to the issuance time minus 60 minutes. This compensates for clock inconsistencies + // across computer systems. The ValidityNotBefore parameter can be used to customize + // the “Not Before” value. // // Unlike the Validity parameter, the ValidityNotBefore parameter is optional. // @@ -6500,8 +6487,8 @@ func (s *KeyUsage) SetNonRepudiation(v bool) *KeyUsage { return s } -// An Amazon Web Services Private CA quota has been exceeded. See the exception -// message returned to determine the quota that was exceeded. +// An ACM Private CA quota has been exceeded. See the exception message returned +// to determine the quota that was exceeded. type LimitExceededException struct { _ struct{} `type:"structure"` RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"` @@ -7133,17 +7120,17 @@ type OcspConfiguration struct { // Enabled is a required field Enabled *bool `type:"boolean" required:"true"` - // By default, Amazon Web Services Private CA injects an Amazon Web Services - // domain into certificates being validated by the Online Certificate Status - // Protocol (OCSP). A customer can alternatively use this object to define a - // CNAME specifying a customized OCSP domain. + // By default, ACM Private CA injects an Amazon Web Services domain into certificates + // being validated by the Online Certificate Status Protocol (OCSP). A customer + // can alternatively use this object to define a CNAME specifying a customized + // OCSP domain. // // Note: The value of the CNAME must not include a protocol prefix such as "http://" // or "https://". // // For more information, see Customizing Online Certificate Status Protocol // (OCSP) (https://docs.aws.amazon.com/acm-pca/latest/userguide/ocsp-customize.html) - // in the Amazon Web Services Private Certificate Authority User Guide. + // in the Certificate Manager Private Certificate Authority (PCA) User Guide. OcspCustomCname *string `type:"string"` } @@ -7415,8 +7402,8 @@ type PolicyInformation struct { // CertPolicyId is a required field CertPolicyId *string `type:"string" required:"true"` - // Modifies the given CertPolicyId with a qualifier. Amazon Web Services Private - // CA supports the certification practice statement (CPS) qualifier. + // Modifies the given CertPolicyId with a qualifier. ACM Private CA supports + // the certification practice statement (CPS) qualifier. PolicyQualifiers []*PolicyQualifierInfo `min:"1" type:"list"` } @@ -7477,8 +7464,7 @@ func (s *PolicyInformation) SetPolicyQualifiers(v []*PolicyQualifierInfo) *Polic } // Modifies the CertPolicyId of a PolicyInformation object with a qualifier. -// Amazon Web Services Private CA supports the certification practice statement -// (CPS) qualifier. +// ACM Private CA supports the certification practice statement (CPS) qualifier. type PolicyQualifierInfo struct { _ struct{} `type:"structure"` @@ -7487,8 +7473,8 @@ type PolicyQualifierInfo struct { // PolicyQualifierId is a required field PolicyQualifierId *string `type:"string" required:"true" enum:"PolicyQualifierId"` - // Defines the qualifier type. Amazon Web Services Private CA supports the use - // of a URI for a CPS qualifier in this field. + // Defines the qualifier type. ACM Private CA supports the use of a URI for + // a CPS qualifier in this field. // // Qualifier is a required field Qualifier *Qualifier `type:"structure" required:"true"` @@ -7640,8 +7626,8 @@ func (s PutPolicyOutput) GoString() string { return s.String() } -// Defines a PolicyInformation qualifier. Amazon Web Services Private CA supports -// the certification practice statement (CPS) qualifier (https://datatracker.ietf.org/doc/html/rfc5280#section-4.2.1.4) +// Defines a PolicyInformation qualifier. ACM Private CA supports the certification +// practice statement (CPS) qualifier (https://datatracker.ietf.org/doc/html/rfc5280#section-4.2.1.4) // defined in RFC 5280. type Qualifier struct { _ struct{} `type:"structure"` @@ -8031,14 +8017,14 @@ func (s RestoreCertificateAuthorityOutput) GoString() string { // by clients, and a CRL contains an updated list of certificates revoked by // your CA. For more information, see RevokeCertificate (https://docs.aws.amazon.com/acm-pca/latest/APIReference/API_RevokeCertificate.html) // and Setting up a certificate revocation method (https://docs.aws.amazon.com/acm-pca/latest/userguide/revocation-setup.html) -// in the Amazon Web Services Private Certificate Authority User Guide. +// in the Certificate Manager Private Certificate Authority (PCA) User Guide. type RevocationConfiguration struct { _ struct{} `type:"structure"` // Configuration of the certificate revocation list (CRL), if any, maintained // by your private CA. A CRL is typically updated approximately 30 minutes after - // a certificate is revoked. If for any reason a CRL update fails, Amazon Web - // Services Private CA makes further attempts every 15 minutes. + // a certificate is revoked. If for any reason a CRL update fails, ACM Private + // CA makes further attempts every 15 minutes. CrlConfiguration *CrlConfiguration `type:"structure"` // Configuration of Online Certificate Status Protocol (OCSP) support, if any, @@ -8651,17 +8637,17 @@ func (s UpdateCertificateAuthorityOutput) GoString() string { // stated in days, months, or years. For more information, see Validity (https://datatracker.ietf.org/doc/html/rfc5280#section-4.1.2.5) // in RFC 5280. // -// Amazon Web Services Private CA API consumes the Validity data type differently -// in two distinct parameters of the IssueCertificate action. The required parameter -// IssueCertificate:Validity specifies the end of a certificate's validity period. -// The optional parameter IssueCertificate:ValidityNotBefore specifies a customized -// starting time for the validity period. +// ACM Private CA API consumes the Validity data type differently in two distinct +// parameters of the IssueCertificate action. The required parameter IssueCertificate:Validity +// specifies the end of a certificate's validity period. The optional parameter +// IssueCertificate:ValidityNotBefore specifies a customized starting time for +// the validity period. type Validity struct { _ struct{} `type:"structure"` - // Determines how Amazon Web Services Private CA interprets the Value parameter, - // an integer. Supported validity types include those listed below. Type definitions - // with values include a sample input value and the resulting output. + // Determines how ACM Private CA interprets the Value parameter, an integer. + // Supported validity types include those listed below. Type definitions with + // values include a sample input value and the resulting output. // // END_DATE: The specific date and time when the certificate will expire, expressed // using UTCTime (YYMMDDHHMMSS) or GeneralizedTime (YYYYMMDDHHMMSS) format. diff --git a/service/acmpca/doc.go b/service/acmpca/doc.go index 8c0dd599533..90fc0921880 100644 --- a/service/acmpca/doc.go +++ b/service/acmpca/doc.go @@ -3,7 +3,7 @@ // Package acmpca provides the client and types for making API // requests to AWS Certificate Manager Private Certificate Authority. // -// This is the Amazon Web Services Private Certificate Authority API Reference. +// This is the Certificate Manager Private Certificate Authority (PCA) API Reference. // It provides descriptions, syntax, and usage examples for each of the actions // and data types involved in creating and managing a private certificate authority // (CA) for your organization. @@ -13,20 +13,17 @@ // SDKs to access an API that is tailored to the programming language or platform // that you prefer. For more information, see Amazon Web Services SDKs (https://aws.amazon.com/tools/#SDKs). // -// Each Amazon Web Services Private CA API operation has a quota that determines -// the number of times the operation can be called per second. Amazon Web Services -// Private CA throttles API requests at different rates depending on the operation. -// Throttling means that Amazon Web Services Private CA rejects an otherwise -// valid request because the request exceeds the operation's quota for the number -// of requests per second. When a request is throttled, Amazon Web Services -// Private CA returns a ThrottlingException (https://docs.aws.amazon.com/acm-pca/latest/APIReference/CommonErrors.html) -// error. Amazon Web Services Private CA does not guarantee a minimum request -// rate for APIs. -// -// To see an up-to-date list of your Amazon Web Services Private CA quotas, -// or to request a quota increase, log into your Amazon Web Services account -// and visit the Service Quotas (https://console.aws.amazon.com/servicequotas/) -// console. +// Each ACM Private CA API operation has a quota that determines the number +// of times the operation can be called per second. ACM Private CA throttles +// API requests at different rates depending on the operation. Throttling means +// that ACM Private CA rejects an otherwise valid request because the request +// exceeds the operation's quota for the number of requests per second. When +// a request is throttled, ACM Private CA returns a ThrottlingException (https://docs.aws.amazon.com/acm-pca/latest/APIReference/CommonErrors.html) +// error. ACM Private CA does not guarantee a minimum request rate for APIs. +// +// To see an up-to-date list of your ACM Private CA quotas, or to request a +// quota increase, log into your Amazon Web Services account and visit the Service +// Quotas (https://console.aws.amazon.com/servicequotas/) console. // // See https://docs.aws.amazon.com/goto/WebAPI/acm-pca-2017-08-22 for more information on this service. // diff --git a/service/acmpca/errors.go b/service/acmpca/errors.go index 7a2d5809625..860c6bd15c9 100644 --- a/service/acmpca/errors.go +++ b/service/acmpca/errors.go @@ -70,8 +70,8 @@ const ( // ErrCodeLimitExceededException for service response error code // "LimitExceededException". // - // An Amazon Web Services Private CA quota has been exceeded. See the exception - // message returned to determine the quota that was exceeded. + // An ACM Private CA quota has been exceeded. See the exception message returned + // to determine the quota that was exceeded. ErrCodeLimitExceededException = "LimitExceededException" // ErrCodeLockoutPreventedException for service response error code diff --git a/service/medialive/api.go b/service/medialive/api.go index 04194aaf48a..0ad3e35fc71 100644 --- a/service/medialive/api.go +++ b/service/medialive/api.go @@ -6625,10 +6625,6 @@ type AudioDescription struct { // ISO 639 language code specified by the input. LanguageCodeControl *string `locationName:"languageCodeControl" type:"string" enum:"AudioDescriptionLanguageCodeControl"` - // The name of this AudioDescription. Outputs will use this name to uniquely - // identify this AudioDescription. Description names should be unique within - // this Live Event. - // // Name is a required field Name *string `locationName:"name" type:"string" required:"true"` @@ -9606,6 +9602,9 @@ type Channel struct { // The log level being written to CloudWatch Logs. LogLevel *string `locationName:"logLevel" type:"string" enum:"LogLevel"` + // Maintenance settings for this channel. + Maintenance *MaintenanceStatus `locationName:"maintenance" type:"structure"` + // The name of the channel. (user-mutable) Name *string `locationName:"name" type:"string"` @@ -9705,6 +9704,12 @@ func (s *Channel) SetLogLevel(v string) *Channel { return s } +// SetMaintenance sets the Maintenance field's value. +func (s *Channel) SetMaintenance(v *MaintenanceStatus) *Channel { + s.Maintenance = v + return s +} + // SetName sets the Name field's value. func (s *Channel) SetName(v string) *Channel { s.Name = &v @@ -9811,6 +9816,9 @@ type ChannelSummary struct { // The log level being written to CloudWatch Logs. LogLevel *string `locationName:"logLevel" type:"string" enum:"LogLevel"` + // Maintenance settings for this channel. + Maintenance *MaintenanceStatus `locationName:"maintenance" type:"structure"` + // The name of the channel. (user-mutable) Name *string `locationName:"name" type:"string"` @@ -9901,6 +9909,12 @@ func (s *ChannelSummary) SetLogLevel(v string) *ChannelSummary { return s } +// SetMaintenance sets the Maintenance field's value. +func (s *ChannelSummary) SetMaintenance(v *MaintenanceStatus) *ChannelSummary { + s.Maintenance = v + return s +} + // SetName sets the Name field's value. func (s *ChannelSummary) SetName(v string) *ChannelSummary { s.Name = &v @@ -10099,6 +10113,8 @@ type CreateChannelInput struct { // The log level the user wants for their channel. LogLevel *string `locationName:"logLevel" type:"string" enum:"LogLevel"` + Maintenance *MaintenanceCreateSettings `locationName:"maintenance" type:"structure"` + Name *string `locationName:"name" type:"string"` RequestId *string `locationName:"requestId" type:"string" idempotencyToken:"true"` @@ -10214,6 +10230,12 @@ func (s *CreateChannelInput) SetLogLevel(v string) *CreateChannelInput { return s } +// SetMaintenance sets the Maintenance field's value. +func (s *CreateChannelInput) SetMaintenance(v *MaintenanceCreateSettings) *CreateChannelInput { + s.Maintenance = v + return s +} + // SetName sets the Name field's value. func (s *CreateChannelInput) SetName(v string) *CreateChannelInput { s.Name = &v @@ -10992,6 +11014,8 @@ type DeleteChannelOutput struct { // The log level the user wants for their channel. LogLevel *string `locationName:"logLevel" type:"string" enum:"LogLevel"` + Maintenance *MaintenanceStatus `locationName:"maintenance" type:"structure"` + Name *string `locationName:"name" type:"string"` PipelineDetails []*PipelineDetail `locationName:"pipelineDetails" type:"list"` @@ -11086,6 +11110,12 @@ func (s *DeleteChannelOutput) SetLogLevel(v string) *DeleteChannelOutput { return s } +// SetMaintenance sets the Maintenance field's value. +func (s *DeleteChannelOutput) SetMaintenance(v *MaintenanceStatus) *DeleteChannelOutput { + s.Maintenance = v + return s +} + // SetName sets the Name field's value. func (s *DeleteChannelOutput) SetName(v string) *DeleteChannelOutput { s.Name = &v @@ -11984,6 +12014,8 @@ type DescribeChannelOutput struct { // The log level the user wants for their channel. LogLevel *string `locationName:"logLevel" type:"string" enum:"LogLevel"` + Maintenance *MaintenanceStatus `locationName:"maintenance" type:"structure"` + Name *string `locationName:"name" type:"string"` PipelineDetails []*PipelineDetail `locationName:"pipelineDetails" type:"list"` @@ -12078,6 +12110,12 @@ func (s *DescribeChannelOutput) SetLogLevel(v string) *DescribeChannelOutput { return s } +// SetMaintenance sets the Maintenance field's value. +func (s *DescribeChannelOutput) SetMaintenance(v *MaintenanceStatus) *DescribeChannelOutput { + s.Maintenance = v + return s +} + // SetName sets the Name field's value. func (s *DescribeChannelOutput) SetName(v string) *DescribeChannelOutput { s.Name = &v @@ -14241,9 +14279,8 @@ func (s *Eac3Settings) SetSurroundMode(v string) *Eac3Settings { type EbuTtDDestinationSettings struct { _ struct{} `type:"structure"` - // Applies only if you plan to convert these source captions to EBU-TT-D or - // TTML in an output. Complete this field if you want to include the name of - // the copyright holder in the copyright metadata tag in the TTML + // Complete this field if you want to include the name of the copyright holder + // in the copyright tag in the captions metadata. CopyrightHolder *string `locationName:"copyrightHolder" type:"string"` // Specifies how to handle the gap between the lines (in multi-line captions).- @@ -21814,6 +21851,159 @@ func (s *M3u8Settings) SetVideoPid(v string) *M3u8Settings { return s } +type MaintenanceCreateSettings struct { + _ struct{} `type:"structure"` + + // Choose one day of the week for maintenance. The chosen day is used for all + // future maintenance windows. + MaintenanceDay *string `locationName:"maintenanceDay" type:"string" enum:"MaintenanceDay"` + + // Choose the hour that maintenance will start. The chosen time is used for + // all future maintenance windows. + MaintenanceStartTime *string `locationName:"maintenanceStartTime" type:"string"` +} + +// String returns the string representation. +// +// API parameter values that are decorated as "sensitive" in the API will not +// be included in the string output. The member name will be present, but the +// value will be replaced with "sensitive". +func (s MaintenanceCreateSettings) String() string { + return awsutil.Prettify(s) +} + +// GoString returns the string representation. +// +// API parameter values that are decorated as "sensitive" in the API will not +// be included in the string output. The member name will be present, but the +// value will be replaced with "sensitive". +func (s MaintenanceCreateSettings) GoString() string { + return s.String() +} + +// SetMaintenanceDay sets the MaintenanceDay field's value. +func (s *MaintenanceCreateSettings) SetMaintenanceDay(v string) *MaintenanceCreateSettings { + s.MaintenanceDay = &v + return s +} + +// SetMaintenanceStartTime sets the MaintenanceStartTime field's value. +func (s *MaintenanceCreateSettings) SetMaintenanceStartTime(v string) *MaintenanceCreateSettings { + s.MaintenanceStartTime = &v + return s +} + +type MaintenanceStatus struct { + _ struct{} `type:"structure"` + + // The currently selected maintenance day. + MaintenanceDay *string `locationName:"maintenanceDay" type:"string" enum:"MaintenanceDay"` + + // Maintenance is required by the displayed date and time. Date and time is + // in ISO. + MaintenanceDeadline *string `locationName:"maintenanceDeadline" type:"string"` + + // The currently scheduled maintenance date and time. Date and time is in ISO. + MaintenanceScheduledDate *string `locationName:"maintenanceScheduledDate" type:"string"` + + // The currently selected maintenance start time. Time is in UTC. + MaintenanceStartTime *string `locationName:"maintenanceStartTime" type:"string"` +} + +// String returns the string representation. +// +// API parameter values that are decorated as "sensitive" in the API will not +// be included in the string output. The member name will be present, but the +// value will be replaced with "sensitive". +func (s MaintenanceStatus) String() string { + return awsutil.Prettify(s) +} + +// GoString returns the string representation. +// +// API parameter values that are decorated as "sensitive" in the API will not +// be included in the string output. The member name will be present, but the +// value will be replaced with "sensitive". +func (s MaintenanceStatus) GoString() string { + return s.String() +} + +// SetMaintenanceDay sets the MaintenanceDay field's value. +func (s *MaintenanceStatus) SetMaintenanceDay(v string) *MaintenanceStatus { + s.MaintenanceDay = &v + return s +} + +// SetMaintenanceDeadline sets the MaintenanceDeadline field's value. +func (s *MaintenanceStatus) SetMaintenanceDeadline(v string) *MaintenanceStatus { + s.MaintenanceDeadline = &v + return s +} + +// SetMaintenanceScheduledDate sets the MaintenanceScheduledDate field's value. +func (s *MaintenanceStatus) SetMaintenanceScheduledDate(v string) *MaintenanceStatus { + s.MaintenanceScheduledDate = &v + return s +} + +// SetMaintenanceStartTime sets the MaintenanceStartTime field's value. +func (s *MaintenanceStatus) SetMaintenanceStartTime(v string) *MaintenanceStatus { + s.MaintenanceStartTime = &v + return s +} + +type MaintenanceUpdateSettings struct { + _ struct{} `type:"structure"` + + // Choose one day of the week for maintenance. The chosen day is used for all + // future maintenance windows. + MaintenanceDay *string `locationName:"maintenanceDay" type:"string" enum:"MaintenanceDay"` + + // Choose a specific date for maintenance to occur. The chosen date is used + // for the next maintenance window only. + MaintenanceScheduledDate *string `locationName:"maintenanceScheduledDate" type:"string"` + + // Choose the hour that maintenance will start. The chosen time is used for + // all future maintenance windows. + MaintenanceStartTime *string `locationName:"maintenanceStartTime" type:"string"` +} + +// String returns the string representation. +// +// API parameter values that are decorated as "sensitive" in the API will not +// be included in the string output. The member name will be present, but the +// value will be replaced with "sensitive". +func (s MaintenanceUpdateSettings) String() string { + return awsutil.Prettify(s) +} + +// GoString returns the string representation. +// +// API parameter values that are decorated as "sensitive" in the API will not +// be included in the string output. The member name will be present, but the +// value will be replaced with "sensitive". +func (s MaintenanceUpdateSettings) GoString() string { + return s.String() +} + +// SetMaintenanceDay sets the MaintenanceDay field's value. +func (s *MaintenanceUpdateSettings) SetMaintenanceDay(v string) *MaintenanceUpdateSettings { + s.MaintenanceDay = &v + return s +} + +// SetMaintenanceScheduledDate sets the MaintenanceScheduledDate field's value. +func (s *MaintenanceUpdateSettings) SetMaintenanceScheduledDate(v string) *MaintenanceUpdateSettings { + s.MaintenanceScheduledDate = &v + return s +} + +// SetMaintenanceStartTime sets the MaintenanceStartTime field's value. +func (s *MaintenanceUpdateSettings) SetMaintenanceStartTime(v string) *MaintenanceUpdateSettings { + s.MaintenanceStartTime = &v + return s +} + // The settings for a MediaConnect Flow. type MediaConnectFlow struct { _ struct{} `type:"structure"` @@ -24590,8 +24780,7 @@ func (s *OutputDestinationSettings) SetUsername(v string) *OutputDestinationSett type OutputGroup struct { _ struct{} `type:"structure"` - // Custom output group name optionally defined by the user. Only letters, numbers, - // and the underscore character allowed; only 32 characters allowed. + // Custom output group name optionally defined by the user. Name *string `locationName:"name" type:"string"` // Settings associated with the output group. @@ -27328,6 +27517,8 @@ type StartChannelOutput struct { // The log level the user wants for their channel. LogLevel *string `locationName:"logLevel" type:"string" enum:"LogLevel"` + Maintenance *MaintenanceStatus `locationName:"maintenance" type:"structure"` + Name *string `locationName:"name" type:"string"` PipelineDetails []*PipelineDetail `locationName:"pipelineDetails" type:"list"` @@ -27422,6 +27613,12 @@ func (s *StartChannelOutput) SetLogLevel(v string) *StartChannelOutput { return s } +// SetMaintenance sets the Maintenance field's value. +func (s *StartChannelOutput) SetMaintenance(v *MaintenanceStatus) *StartChannelOutput { + s.Maintenance = v + return s +} + // SetName sets the Name field's value. func (s *StartChannelOutput) SetName(v string) *StartChannelOutput { s.Name = &v @@ -27988,6 +28185,8 @@ type StopChannelOutput struct { // The log level the user wants for their channel. LogLevel *string `locationName:"logLevel" type:"string" enum:"LogLevel"` + Maintenance *MaintenanceStatus `locationName:"maintenance" type:"structure"` + Name *string `locationName:"name" type:"string"` PipelineDetails []*PipelineDetail `locationName:"pipelineDetails" type:"list"` @@ -28082,6 +28281,12 @@ func (s *StopChannelOutput) SetLogLevel(v string) *StopChannelOutput { return s } +// SetMaintenance sets the Maintenance field's value. +func (s *StopChannelOutput) SetMaintenance(v *MaintenanceStatus) *StopChannelOutput { + s.Maintenance = v + return s +} + // SetName sets the Name field's value. func (s *StopChannelOutput) SetName(v string) *StopChannelOutput { s.Name = &v @@ -28732,9 +28937,8 @@ func (s *TransferringInputDeviceSummary) SetTransferType(v string) *Transferring type TtmlDestinationSettings struct { _ struct{} `type:"structure"` - // When set to passthrough, passes through style and position information from - // a TTML-like input source (TTML, SMPTE-TT, CFF-TT) to the CFF-TT output or - // TTML output. + // This field is not currently supported and will not affect the output styling. + // Leave the default value. StyleControl *string `locationName:"styleControl" type:"string" enum:"TtmlDestinationStyleControl"` } @@ -29153,6 +29357,8 @@ type UpdateChannelInput struct { // The log level the user wants for their channel. LogLevel *string `locationName:"logLevel" type:"string" enum:"LogLevel"` + Maintenance *MaintenanceUpdateSettings `locationName:"maintenance" type:"structure"` + Name *string `locationName:"name" type:"string"` RoleArn *string `locationName:"roleArn" type:"string"` @@ -29259,6 +29465,12 @@ func (s *UpdateChannelInput) SetLogLevel(v string) *UpdateChannelInput { return s } +// SetMaintenance sets the Maintenance field's value. +func (s *UpdateChannelInput) SetMaintenance(v *MaintenanceUpdateSettings) *UpdateChannelInput { + s.Maintenance = v + return s +} + // SetName sets the Name field's value. func (s *UpdateChannelInput) SetName(v string) *UpdateChannelInput { s.Name = &v @@ -34627,6 +34839,43 @@ func M3u8TimedMetadataBehavior_Values() []string { } } +// The currently selected maintenance day. +const ( + // MaintenanceDayMonday is a MaintenanceDay enum value + MaintenanceDayMonday = "MONDAY" + + // MaintenanceDayTuesday is a MaintenanceDay enum value + MaintenanceDayTuesday = "TUESDAY" + + // MaintenanceDayWednesday is a MaintenanceDay enum value + MaintenanceDayWednesday = "WEDNESDAY" + + // MaintenanceDayThursday is a MaintenanceDay enum value + MaintenanceDayThursday = "THURSDAY" + + // MaintenanceDayFriday is a MaintenanceDay enum value + MaintenanceDayFriday = "FRIDAY" + + // MaintenanceDaySaturday is a MaintenanceDay enum value + MaintenanceDaySaturday = "SATURDAY" + + // MaintenanceDaySunday is a MaintenanceDay enum value + MaintenanceDaySunday = "SUNDAY" +) + +// MaintenanceDay_Values returns all elements of the MaintenanceDay enum +func MaintenanceDay_Values() []string { + return []string{ + MaintenanceDayMonday, + MaintenanceDayTuesday, + MaintenanceDayWednesday, + MaintenanceDayThursday, + MaintenanceDayFriday, + MaintenanceDaySaturday, + MaintenanceDaySunday, + } +} + // Motion Graphics Insertion const ( // MotionGraphicsInsertionDisabled is a MotionGraphicsInsertion enum value