@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:36.362Z") @Stability(value=Stable) public class CfnDataIntegration extends CfnResource implements IInspectable
Creates and persists a DataIntegration resource.
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.*;
CfnDataIntegration cfnDataIntegration = CfnDataIntegration.Builder.create(this, "MyCfnDataIntegration")
.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 | Class and Description |
|---|---|
static class |
CfnDataIntegration.Builder
A fluent builder for
CfnDataIntegration. |
static interface |
CfnDataIntegration.ScheduleConfigProperty
The name of the data and how often it should be pulled from the source.
|
software.amazon.jsii.JsiiObject.InitializationModeIInspectable.Jsii$Default, IInspectable.Jsii$Proxy| Modifier and Type | Field and Description |
|---|---|
static String |
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
|
| Modifier | Constructor and Description |
|---|---|
|
CfnDataIntegration(software.constructs.Construct scope,
String id,
CfnDataIntegrationProps props)
Create a new `AWS::AppIntegrations::DataIntegration`.
|
protected |
CfnDataIntegration(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) |
protected |
CfnDataIntegration(software.amazon.jsii.JsiiObjectRef objRef) |
| Modifier and Type | Method and Description |
|---|---|
String |
getAttrDataIntegrationArn()
The Amazon Resource Name (ARN) for the DataIntegration.
|
String |
getAttrId()
A unique identifier.
|
protected Map<String,Object> |
getCfnProperties() |
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.
|
TagManager |
getTags()
An array of key-value pairs to apply to this resource.
|
void |
inspect(TreeInspector inspector)
Examines the CloudFormation resource and discloses attributes.
|
protected Map<String,Object> |
renderProperties(Map<String,Object> props) |
void |
setDescription(String value)
A description of the DataIntegration.
|
void |
setKmsKey(String value)
The KMS key for the DataIntegration.
|
void |
setName(String value)
The name of the DataIntegration.
|
void |
setScheduleConfig(CfnDataIntegration.ScheduleConfigProperty value)
The name of the data and how often it should be pulled from the source.
|
void |
setScheduleConfig(IResolvable value)
The name of the data and how often it should be pulled from the source.
|
void |
setSourceUri(String value)
The URI of the data source.
|
addDeletionOverride, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, getUpdatedProperties, isCfnResource, shouldSynthesize, toString, validatePropertiesgetRefgetCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalIdjsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet@Stability(value=Stable) public static final String CFN_RESOURCE_TYPE_NAME
protected CfnDataIntegration(software.amazon.jsii.JsiiObjectRef objRef)
protected CfnDataIntegration(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
@Stability(value=Stable)
public CfnDataIntegration(@NotNull
software.constructs.Construct scope,
@NotNull
String id,
@NotNull
CfnDataIntegrationProps props)
scope - - scope in which this resource is defined. This parameter is required.id - - scoped id of the resource. This parameter is required.props - - resource properties. This parameter is required.@Stability(value=Stable)
public void inspect(@NotNull
TreeInspector inspector)
inspect in interface IInspectableinspector - - tree inspector to collect and process attributes. This parameter is required.@Stability(value=Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
renderProperties in class CfnResourceprops - This parameter is required.@Stability(value=Stable) @NotNull public String getAttrDataIntegrationArn()
@Stability(value=Stable) @NotNull public String getAttrId()
@Stability(value=Stable) @NotNull protected Map<String,Object> getCfnProperties()
getCfnProperties in class CfnResource@Stability(value=Stable) @NotNull public TagManager getTags()
For more information, see Tag .
@Stability(value=Stable) @NotNull public String getKmsKey()
@Stability(value=Stable)
public void setKmsKey(@NotNull
String value)
@Stability(value=Stable) @NotNull public String getName()
@Stability(value=Stable)
public void setName(@NotNull
String value)
@Stability(value=Stable) @NotNull public Object getScheduleConfig()
@Stability(value=Stable)
public void setScheduleConfig(@NotNull
CfnDataIntegration.ScheduleConfigProperty value)
@Stability(value=Stable)
public void setScheduleConfig(@NotNull
IResolvable value)
@Stability(value=Stable) @NotNull public String getSourceUri()
@Stability(value=Stable)
public void setSourceUri(@NotNull
String value)
@Stability(value=Stable) @Nullable public String getDescription()
@Stability(value=Stable)
public void setDescription(@Nullable
String value)
Copyright © 2022. All rights reserved.