Class CfnIntegration

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
All Implemented Interfaces:
IInspectable, ITaggableV2, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:12.603Z") @Stability(Stable) public class CfnIntegration extends CfnResource implements IInspectable, ITaggableV2
A zero-ETL integration with Amazon Redshift.

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.rds.*;
 CfnIntegration cfnIntegration = CfnIntegration.Builder.create(this, "MyCfnIntegration")
         .sourceArn("sourceArn")
         .targetArn("targetArn")
         // the properties below are optional
         .additionalEncryptionContext(Map.of(
                 "additionalEncryptionContextKey", "additionalEncryptionContext"))
         .dataFilter("dataFilter")
         .description("description")
         .integrationName("integrationName")
         .kmsKeyId("kmsKeyId")
         .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

    • CfnIntegration

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

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

      @Stability(Stable) public CfnIntegration(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnIntegrationProps 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.
    • getAttrCreateTime

      @Stability(Stable) @NotNull public String getAttrCreateTime()
      The time when the integration was created, in Universal Coordinated Time (UTC).
    • getAttrIntegrationArn

      @Stability(Stable) @NotNull public String getAttrIntegrationArn()
      The ARN of the integration.
    • getCdkTagManager

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

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

      @Stability(Stable) @NotNull public String getSourceArn()
      The Amazon Resource Name (ARN) of the database to use as the source for replication.
    • setSourceArn

      @Stability(Stable) public void setSourceArn(@NotNull String value)
      The Amazon Resource Name (ARN) of the database to use as the source for replication.
    • getTargetArn

      @Stability(Stable) @NotNull public String getTargetArn()
      The ARN of the Redshift data warehouse to use as the target for replication.
    • setTargetArn

      @Stability(Stable) public void setTargetArn(@NotNull String value)
      The ARN of the Redshift data warehouse to use as the target for replication.
    • getAdditionalEncryptionContext

      @Stability(Stable) @Nullable public Object getAdditionalEncryptionContext()
      An optional set of non-secret key–value pairs that contains additional contextual information about the data.
    • setAdditionalEncryptionContext

      @Stability(Stable) public void setAdditionalEncryptionContext(@Nullable IResolvable value)
      An optional set of non-secret key–value pairs that contains additional contextual information about the data.
    • setAdditionalEncryptionContext

      @Stability(Stable) public void setAdditionalEncryptionContext(@Nullable Map<String,String> value)
      An optional set of non-secret key–value pairs that contains additional contextual information about the data.
    • getDataFilter

      @Stability(Stable) @Nullable public String getDataFilter()
      Data filters for the integration.
    • setDataFilter

      @Stability(Stable) public void setDataFilter(@Nullable String value)
      Data filters for the integration.
    • getDescription

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

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

      @Stability(Stable) @Nullable public String getIntegrationName()
      The name of the integration.
    • setIntegrationName

      @Stability(Stable) public void setIntegrationName(@Nullable String value)
      The name of the integration.
    • getKmsKeyId

      @Stability(Stable) @Nullable public String getKmsKeyId()
      The AWS Key Management System ( AWS KMS) key identifier for the key to use to encrypt the integration.
    • setKmsKeyId

      @Stability(Stable) public void setKmsKeyId(@Nullable String value)
      The AWS Key Management System ( AWS KMS) key identifier for the key to use to encrypt the integration.
    • getTags

      @Stability(Stable) @Nullable public List<CfnTag> getTags()
      A list of tags.
    • setTags

      @Stability(Stable) public void setTags(@Nullable List<CfnTag> value)
      A list of tags.