interface CfnCertificateProviderMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoT.Mixins.CfnCertificateProviderMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiot/mixins#CfnCertificateProviderMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.iot.mixins.CfnCertificateProviderMixinProps |
Python | aws_cdk.mixins_preview.aws_iot.mixins.CfnCertificateProviderMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_iot » mixins » CfnCertificateProviderMixinProps |
Properties for CfnCertificateProviderPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iot_mixins } from '@aws-cdk/mixins-preview/aws-iot';
const cfnCertificateProviderMixinProps: iot_mixins.CfnCertificateProviderMixinProps = {
accountDefaultForOperations: ['accountDefaultForOperations'],
certificateProviderName: 'certificateProviderName',
lambdaFunctionArn: 'lambdaFunctionArn',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| account | string[] | A list of the operations that the certificate provider will use to generate certificates. |
| certificate | string | The name of the certificate provider. |
| lambda | string | The ARN of the Lambda function. |
| tags? | Cfn[] | Metadata that can be used to manage the certificate provider. |
accountDefaultForOperations?
Type:
string[]
(optional)
A list of the operations that the certificate provider will use to generate certificates.
Valid value: CreateCertificateFromCsr .
certificateProviderName?
Type:
string
(optional)
The name of the certificate provider.
lambdaFunctionArn?
Type:
string
(optional)
The ARN of the Lambda function.
tags?
Type:
Cfn[]
(optional)
Metadata that can be used to manage the certificate provider.

.NET
Go
Java
Python
TypeScript