Class CfnDataIntegration
Creates and persists a DataIntegration resource.
Inherited Members
Namespace: Amazon.CDK.AWS.AppIntegrations
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDataIntegration : CfnResource, IInspectable, ITaggable
Syntax (vb)
Public Class CfnDataIntegration
Inherits CfnResource
Implements IInspectable, ITaggable
Remarks
CloudformationResource: AWS::AppIntegrations::DataIntegration
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.AppIntegrations;
var filters;
var objectConfiguration;
var cfnDataIntegration = new CfnDataIntegration(this, "MyCfnDataIntegration", new CfnDataIntegrationProps {
KmsKey = "kmsKey",
Name = "name",
SourceUri = "sourceUri",
// the properties below are optional
Description = "description",
FileConfiguration = new FileConfigurationProperty {
Folders = new [] { "folders" },
// the properties below are optional
Filters = filters
},
ObjectConfiguration = objectConfiguration,
ScheduleConfig = new ScheduleConfigProperty {
ScheduleExpression = "scheduleExpression",
// the properties below are optional
FirstExecutionFrom = "firstExecutionFrom",
Object = "object"
},
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
});
Synopsis
Constructors
CfnDataIntegration(ByRefValue) | Used by jsii to construct an instance of this class from a Javascript-owned object reference |
CfnDataIntegration(DeputyBase.DeputyProps) | Used by jsii to construct an instance of this class from DeputyProps |
CfnDataIntegration(Construct, String, ICfnDataIntegrationProps) |
Properties
AttrDataIntegrationArn | The Amazon Resource Name (ARN) for the DataIntegration. |
AttrId | A unique identifier. |
CFN_RESOURCE_TYPE_NAME | The CloudFormation resource type name for this resource class. |
CfnProperties | |
Description | A description of the DataIntegration. |
FileConfiguration | The configuration for what files should be pulled from the source. |
KmsKey | The KMS key for the DataIntegration. |
Name | The name of the DataIntegration. |
ObjectConfiguration | The configuration for what data should be pulled from the source. |
ScheduleConfig | The name of the data and how often it should be pulled from the source. |
SourceUri | The URI of the data source. |
Tags | Tag Manager which manages the tags for this resource. |
TagsRaw | An array of key-value pairs to apply to this resource. |
Methods
Inspect(TreeInspector) | Examines the CloudFormation resource and discloses attributes. |
RenderProperties(IDictionary<String, Object>) |
Constructors
CfnDataIntegration(ByRefValue)
Used by jsii to construct an instance of this class from a Javascript-owned object reference
protected CfnDataIntegration(ByRefValue reference)
Parameters
- reference Amazon.JSII.Runtime.Deputy.ByRefValue
The Javascript-owned object reference
CfnDataIntegration(DeputyBase.DeputyProps)
Used by jsii to construct an instance of this class from DeputyProps
protected CfnDataIntegration(DeputyBase.DeputyProps props)
Parameters
- props Amazon.JSII.Runtime.Deputy.DeputyBase.DeputyProps
The deputy props
CfnDataIntegration(Construct, String, ICfnDataIntegrationProps)
public CfnDataIntegration(Construct scope, string id, ICfnDataIntegrationProps props)
Parameters
- scope Constructs.Construct
Scope in which this resource is defined.
- id System.String
Construct identifier for this resource (unique in its scope).
- props ICfnDataIntegrationProps
Resource properties.
Properties
AttrDataIntegrationArn
The Amazon Resource Name (ARN) for the DataIntegration.
public virtual string AttrDataIntegrationArn { get; }
Property Value
System.String
Remarks
CloudformationAttribute: DataIntegrationArn
AttrId
A unique identifier.
public virtual string AttrId { get; }
Property Value
System.String
Remarks
CloudformationAttribute: Id
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
public static string CFN_RESOURCE_TYPE_NAME { get; }
Property Value
System.String
CfnProperties
protected override IDictionary<string, object> CfnProperties { get; }
Property Value
System.Collections.Generic.IDictionary<System.String, System.Object>
Overrides
Description
A description of the DataIntegration.
public virtual string Description { get; set; }
Property Value
System.String
FileConfiguration
The configuration for what files should be pulled from the source.
public virtual object FileConfiguration { get; set; }
Property Value
System.Object
KmsKey
The KMS key for the DataIntegration.
public virtual string KmsKey { get; set; }
Property Value
System.String
Name
The name of the DataIntegration.
public virtual string Name { get; set; }
Property Value
System.String
ObjectConfiguration
The configuration for what data should be pulled from the source.
public virtual object ObjectConfiguration { get; set; }
Property Value
System.Object
ScheduleConfig
The name of the data and how often it should be pulled from the source.
public virtual object ScheduleConfig { get; set; }
Property Value
System.Object
SourceUri
The URI of the data source.
public virtual string SourceUri { get; set; }
Property Value
System.String
Tags
Tag Manager which manages the tags for this resource.
public virtual TagManager Tags { get; }
Property Value
TagsRaw
An array of key-value pairs to apply to this resource.
public virtual ICfnTag[] TagsRaw { get; set; }
Property Value
ICfnTag[]
Methods
Inspect(TreeInspector)
Examines the CloudFormation resource and discloses attributes.
public virtual void Inspect(TreeInspector inspector)
Parameters
- inspector TreeInspector
tree inspector to collect and process attributes.
RenderProperties(IDictionary<String, Object>)
protected override IDictionary<string, object> RenderProperties(IDictionary<string, object> props)
Parameters
- props System.Collections.Generic.IDictionary<System.String, System.Object>
Returns
System.Collections.Generic.IDictionary<System.String, System.Object>