CfnCertificateProviderProps
- class aws_cdk.aws_iot.CfnCertificateProviderProps(*, account_default_for_operations, lambda_function_arn, certificate_provider_name=None, tags=None)
Bases:
objectProperties for defining a
CfnCertificateProvider.- Parameters:
account_default_for_operations (
Sequence[str]) – A list of the operations that the certificate provider will use to generate certificates. Valid value:CreateCertificateFromCsr.lambda_function_arn (
str) – The ARN of the Lambda function.certificate_provider_name (
Optional[str]) – The name of the certificate provider.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – Metadata that can be used to manage the certificate provider.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_iot as iot cfn_certificate_provider_props = iot.CfnCertificateProviderProps( account_default_for_operations=["accountDefaultForOperations"], lambda_function_arn="lambdaFunctionArn", # the properties below are optional certificate_provider_name="certificateProviderName", tags=[CfnTag( key="key", value="value" )] )
Attributes
- account_default_for_operations
A list of the operations that the certificate provider will use to generate certificates.
Valid value:
CreateCertificateFromCsr.
- certificate_provider_name
The name of the certificate provider.
- lambda_function_arn
The ARN of the Lambda function.
- tags
Metadata that can be used to manage the certificate provider.