Interface CfnCertificateProviderProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCertificateProviderProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-15T10:25:00.650Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCertificateProviderProps
static final class
An 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
-