interface CfnCertificateProviderProps
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.IoT.CfnCertificateProviderProps | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiot#CfnCertificateProviderProps | 
|  Java | software.amazon.awscdk.services.iot.CfnCertificateProviderProps | 
|  Python | aws_cdk.aws_iot.CfnCertificateProviderProps | 
|  TypeScript | aws-cdk-lib»aws_iot»CfnCertificateProviderProps | 
Properties for defining a CfnCertificateProvider.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iot as iot } from 'aws-cdk-lib';
const cfnCertificateProviderProps: iot.CfnCertificateProviderProps = {
  accountDefaultForOperations: ['accountDefaultForOperations'],
  lambdaFunctionArn: 'lambdaFunctionArn',
  // the properties below are optional
  certificateProviderName: 'certificateProviderName',
  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. | 
| lambda | string | The ARN of the Lambda function. | 
| certificate | string | The name of the certificate provider. | 
| tags? | Cfn[] | Metadata that can be used to manage the certificate provider. | 
accountDefaultForOperations
Type:
string[]
A list of the operations that the certificate provider will use to generate certificates.
Valid value: CreateCertificateFromCsr .
lambdaFunctionArn
Type:
string
The ARN of the Lambda function.
certificateProviderName?
Type:
string
(optional)
The name of the certificate provider.
tags?
Type:
Cfn[]
(optional)
Metadata that can be used to manage the certificate provider.
