@Generated(value="jsii-pacmak/1.47.0 (build 86d2c33)", date="2021-12-22T10:27:18.068Z") @Stability(value=Stable) public interface CfnInputProps 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.iotevents.*;
CfnInputProps cfnInputProps = CfnInputProps.builder()
.inputDefinition(InputDefinitionProperty.builder()
.attributes(List.of(AttributeProperty.builder()
.jsonPath("jsonPath")
.build()))
.build())
// the properties below are optional
.inputDescription("inputDescription")
.inputName("inputName")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnInputProps.Builder
A builder for
CfnInputProps |
static class |
CfnInputProps.Jsii$Proxy
An implementation for
CfnInputProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnInputProps.Builder |
builder() |
Object |
getInputDefinition()
`AWS::IoTEvents::Input.InputDefinition`.
|
default String |
getInputDescription()
`AWS::IoTEvents::Input.InputDescription`.
|
default String |
getInputName()
`AWS::IoTEvents::Input.InputName`.
|
default List<CfnTag> |
getTags()
`AWS::IoTEvents::Input.Tags`.
|
@Stability(value=Stable) @NotNull Object getInputDefinition()
@Stability(value=Stable) @Nullable default String getInputDescription()
@Stability(value=Stable) @Nullable default String getInputName()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnInputProps.Builder builder()
CfnInputProps.Builder of CfnInputPropsCopyright © 2021. All rights reserved.