Class CfnDataIntegration

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.CfnElement
software.amazon.awscdk.CfnRefElement
software.amazon.awscdk.CfnResource
software.amazon.awscdk.services.appintegrations.CfnDataIntegration
All Implemented Interfaces:
IInspectable, ITaggable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-02T15:58:21.096Z") @Stability(Stable) public class CfnDataIntegration extends CfnResource implements IInspectable, ITaggable
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.*;
 Object filters;
 Object objectConfiguration;
 CfnDataIntegration cfnDataIntegration = CfnDataIntegration.Builder.create(this, "MyCfnDataIntegration")
         .kmsKey("kmsKey")
         .name("name")
         .sourceUri("sourceUri")
         // the properties below are optional
         .description("description")
         .fileConfiguration(FileConfigurationProperty.builder()
                 .folders(List.of("folders"))
                 // the properties below are optional
                 .filters(filters)
                 .build())
         .objectConfiguration(objectConfiguration)
         .scheduleConfig(ScheduleConfigProperty.builder()
                 .scheduleExpression("scheduleExpression")
                 // the properties below are optional
                 .firstExecutionFrom("firstExecutionFrom")
                 .object("object")
                 .build())
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also:
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String CFN_RESOURCE_TYPE_NAME
      The CloudFormation resource type name for this resource class.
  • Constructor Details

    • CfnDataIntegration

      protected CfnDataIntegration(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnDataIntegration

      protected CfnDataIntegration(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnDataIntegration

      @Stability(Stable) public CfnDataIntegration(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnDataIntegrationProps props)
      Parameters:
      scope - Scope in which this resource is defined. This parameter is required.
      id - Construct identifier for this resource (unique in its scope). This parameter is required.
      props - Resource properties. This parameter is required.
  • Method Details

    • inspect

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      Parameters:
      inspector - tree inspector to collect and process attributes. This parameter is required.
    • renderProperties

      @Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
      Overrides:
      renderProperties in class CfnResource
      Parameters:
      props - This parameter is required.
    • getAttrDataIntegrationArn

      @Stability(Stable) @NotNull public String getAttrDataIntegrationArn()
      The Amazon Resource Name (ARN) for the DataIntegration.
    • getAttrId

      @Stability(Stable) @NotNull public String getAttrId()
      A unique identifier.
    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getTags

      @Stability(Stable) @NotNull public TagManager getTags()
      Tag Manager which manages the tags for this resource.
      Specified by:
      getTags in interface ITaggable
    • getKmsKey

      @Stability(Stable) @NotNull public String getKmsKey()
      The KMS key for the DataIntegration.
    • setKmsKey

      @Stability(Stable) public void setKmsKey(@NotNull String value)
      The KMS key for the DataIntegration.
    • getName

      @Stability(Stable) @NotNull public String getName()
      The name of the DataIntegration.
    • setName

      @Stability(Stable) public void setName(@NotNull String value)
      The name of the DataIntegration.
    • getSourceUri

      @Stability(Stable) @NotNull public String getSourceUri()
      The URI of the data source.
    • setSourceUri

      @Stability(Stable) public void setSourceUri(@NotNull String value)
      The URI of the data source.
    • getDescription

      @Stability(Stable) @Nullable public String getDescription()
      A description of the DataIntegration.
    • setDescription

      @Stability(Stable) public void setDescription(@Nullable String value)
      A description of the DataIntegration.
    • getFileConfiguration

      @Stability(Stable) @Nullable public Object getFileConfiguration()
      The configuration for what files should be pulled from the source.
    • setFileConfiguration

      @Stability(Stable) public void setFileConfiguration(@Nullable IResolvable value)
      The configuration for what files should be pulled from the source.
    • setFileConfiguration

      @Stability(Stable) public void setFileConfiguration(@Nullable CfnDataIntegration.FileConfigurationProperty value)
      The configuration for what files should be pulled from the source.
    • getObjectConfiguration

      @Stability(Stable) @Nullable public Object getObjectConfiguration()
      The configuration for what data should be pulled from the source.
    • setObjectConfiguration

      @Stability(Stable) public void setObjectConfiguration(@Nullable Object value)
      The configuration for what data should be pulled from the source.
    • getScheduleConfig

      @Stability(Stable) @Nullable public Object getScheduleConfig()
      The name of the data and how often it should be pulled from the source.
    • setScheduleConfig

      @Stability(Stable) public void setScheduleConfig(@Nullable IResolvable value)
      The name of the data and how often it should be pulled from the source.
    • setScheduleConfig

      @Stability(Stable) public void setScheduleConfig(@Nullable CfnDataIntegration.ScheduleConfigProperty value)
      The name of the data and how often it should be pulled from the source.
    • getTagsRaw

      @Stability(Stable) @Nullable public List<CfnTag> getTagsRaw()
      An array of key-value pairs to apply to this resource.
    • setTagsRaw

      @Stability(Stable) public void setTagsRaw(@Nullable List<CfnTag> value)
      An array of key-value pairs to apply to this resource.