CfnCertificateProviderMixinProps

class aws_cdk.mixins_preview.aws_iot.mixins.CfnCertificateProviderMixinProps(*, account_default_for_operations=None, certificate_provider_name=None, lambda_function_arn=None, tags=None)

Bases: object

Properties for CfnCertificateProviderPropsMixin.

Parameters:
  • account_default_for_operations (Optional[Sequence[str]]) – A list of the operations that the certificate provider will use to generate certificates. Valid value: CreateCertificateFromCsr .

  • certificate_provider_name (Optional[str]) – The name of the certificate provider.

  • lambda_function_arn (Optional[str]) – The ARN of the Lambda function.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – Metadata that can be used to manage the certificate provider.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificateprovider.html

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.mixins_preview.aws_iot import mixins as iot_mixins

cfn_certificate_provider_mixin_props = iot_mixins.CfnCertificateProviderMixinProps(
    account_default_for_operations=["accountDefaultForOperations"],
    certificate_provider_name="certificateProviderName",
    lambda_function_arn="lambdaFunctionArn",
    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 .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificateprovider.html#cfn-iot-certificateprovider-accountdefaultforoperations

certificate_provider_name

The name of the certificate provider.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificateprovider.html#cfn-iot-certificateprovider-certificateprovidername

lambda_function_arn

The ARN of the Lambda function.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificateprovider.html#cfn-iot-certificateprovider-lambdafunctionarn

tags

Metadata that can be used to manage the certificate provider.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-certificateprovider.html#cfn-iot-certificateprovider-tags