@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:40.026Z") @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()
The definition of the input.
|
default String |
getInputDescription()
A brief description of the input.
|
default String |
getInputName()
The name of the input.
|
default List<CfnTag> |
getTags()
An array of key-value pairs to apply to this resource.
|
@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()
For more information, see Tag .
@Stability(value=Stable) static CfnInputProps.Builder builder()
CfnInputProps.Builder of CfnInputPropsCopyright © 2022. All rights reserved.