@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:36.363Z") @Stability(value=Stable) public interface CfnDataIntegrationProps 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.appintegrations.*;
CfnDataIntegrationProps cfnDataIntegrationProps = CfnDataIntegrationProps.builder()
.kmsKey("kmsKey")
.name("name")
.scheduleConfig(ScheduleConfigProperty.builder()
.firstExecutionFrom("firstExecutionFrom")
.object("object")
.scheduleExpression("scheduleExpression")
.build())
.sourceUri("sourceUri")
// the properties below are optional
.description("description")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDataIntegrationProps.Builder
A builder for
CfnDataIntegrationProps |
static class |
CfnDataIntegrationProps.Jsii$Proxy
An implementation for
CfnDataIntegrationProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnDataIntegrationProps.Builder |
builder() |
default String |
getDescription()
A description of the DataIntegration.
|
String |
getKmsKey()
The KMS key for the DataIntegration.
|
String |
getName()
The name of the DataIntegration.
|
Object |
getScheduleConfig()
The name of the data and how often it should be pulled from the source.
|
String |
getSourceUri()
The URI of the data source.
|
default List<CfnTag> |
getTags()
An array of key-value pairs to apply to this resource.
|
@Stability(value=Stable) @NotNull String getKmsKey()
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @NotNull Object getScheduleConfig()
@Stability(value=Stable) @NotNull String getSourceUri()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
For more information, see Tag .
@Stability(value=Stable) static CfnDataIntegrationProps.Builder builder()
CfnDataIntegrationProps.Builder of CfnDataIntegrationPropsCopyright © 2022. All rights reserved.