Interface CfnCertificateProviderProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCertificateProviderProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.120.0 (build 192dc88)",
date="2025-12-05T22:26:38.136Z")
@Stability(Stable)
public interface CfnCertificateProviderProps
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.iot.*;
CfnCertificateProviderProps cfnCertificateProviderProps = CfnCertificateProviderProps.builder()
.accountDefaultForOperations(List.of("accountDefaultForOperations"))
.lambdaFunctionArn("lambdaFunctionArn")
// the properties below are optional
.certificateProviderName("certificateProviderName")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCertificateProviderPropsstatic final classAn implementation forCfnCertificateProviderProps -
Method Summary
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:
-
getLambdaFunctionArn
The ARN of the Lambda function.- See Also:
-
getCertificateProviderName
The name of the certificate provider.- See Also:
-
getTags
Metadata that can be used to manage the certificate provider.- See Also:
-
builder
-