@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:39.872Z") @Stability(value=Stable) public interface CfnProvisioningTemplateProps extends software.amazon.jsii.JsiiSerializable
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.*;
CfnProvisioningTemplateProps cfnProvisioningTemplateProps = CfnProvisioningTemplateProps.builder()
.provisioningRoleArn("provisioningRoleArn")
.templateBody("templateBody")
// the properties below are optional
.description("description")
.enabled(false)
.preProvisioningHook(ProvisioningHookProperty.builder()
.payloadVersion("payloadVersion")
.targetArn("targetArn")
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.templateName("templateName")
.templateType("templateType")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnProvisioningTemplateProps.Builder
A builder for
CfnProvisioningTemplateProps |
static class |
CfnProvisioningTemplateProps.Jsii$Proxy
An implementation for
CfnProvisioningTemplateProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnProvisioningTemplateProps.Builder |
builder() |
default String |
getDescription()
The description of the fleet provisioning template.
|
default Object |
getEnabled()
True to enable the fleet provisioning template, otherwise false.
|
default Object |
getPreProvisioningHook()
Creates a pre-provisioning hook template.
|
String |
getProvisioningRoleArn()
The role ARN for the role associated with the fleet provisioning template.
|
default List<CfnTag> |
getTags()
Metadata that can be used to manage the fleet provisioning template.
|
String |
getTemplateBody()
The JSON formatted contents of the fleet provisioning template version.
|
default String |
getTemplateName()
The name of the fleet provisioning template.
|
default String |
getTemplateType()
`AWS::IoT::ProvisioningTemplate.TemplateType`.
|
@Stability(value=Stable) @NotNull String getProvisioningRoleArn()
This IoT role grants permission to provision a device.
@Stability(value=Stable) @NotNull String getTemplateBody()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default Object getEnabled()
@Stability(value=Stable) @Nullable default Object getPreProvisioningHook()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) @Nullable default String getTemplateName()
@Stability(value=Stable) @Nullable default String getTemplateType()
@Stability(value=Stable) static CfnProvisioningTemplateProps.Builder builder()
Copyright © 2022. All rights reserved.