Interface CfnCertificateProviderMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCertificateProviderMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-19T12:55:21.235Z")
@Stability(Stable)
public interface CfnCertificateProviderMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnCertificateProviderPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.iot.*;
CfnCertificateProviderMixinProps cfnCertificateProviderMixinProps = CfnCertificateProviderMixinProps.builder()
.accountDefaultForOperations(List.of("accountDefaultForOperations"))
.certificateProviderName("certificateProviderName")
.lambdaFunctionArn("lambdaFunctionArn")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCertificateProviderMixinPropsstatic final classAn implementation forCfnCertificateProviderMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()A list of the operations that the certificate provider will use to generate certificates.default StringThe name of the certificate provider.default StringThe ARN of the Lambda function.getTags()Metadata that can be used to manage the certificate provider.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccountDefaultForOperations
A list of the operations that the certificate provider will use to generate certificates.Valid value:
CreateCertificateFromCsr.- See Also:
-
getCertificateProviderName
The name of the certificate provider.- See Also:
-
getLambdaFunctionArn
The ARN of the Lambda function.- See Also:
-
getTags
Metadata that can be used to manage the certificate provider.- See Also:
-
builder
-