Show / Hide Table of Contents

Class CfnDataIntegration.FileConfigurationProperty

The configuration for what files should be pulled from the source.

Inheritance
object
CfnDataIntegration.FileConfigurationProperty
Implements
CfnDataIntegration.IFileConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.AppIntegrations
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDataIntegration.FileConfigurationProperty : CfnDataIntegration.IFileConfigurationProperty
Syntax (vb)
Public Class CfnDataIntegration.FileConfigurationProperty Implements CfnDataIntegration.IFileConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appintegrations-dataintegration-fileconfiguration.html

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 fileConfigurationProperty = new FileConfigurationProperty {
                 Folders = new [] { "folders" },

                 // the properties below are optional
                 Filters = filters
             };

Synopsis

Constructors

FileConfigurationProperty()

The configuration for what files should be pulled from the source.

Properties

Filters

Restrictions for what files should be pulled from the source.

Folders

Identifiers for the source folders to pull all files from recursively.

Constructors

FileConfigurationProperty()

The configuration for what files should be pulled from the source.

public FileConfigurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appintegrations-dataintegration-fileconfiguration.html

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 fileConfigurationProperty = new FileConfigurationProperty {
                 Folders = new [] { "folders" },

                 // the properties below are optional
                 Filters = filters
             };

Properties

Filters

Restrictions for what files should be pulled from the source.

public object? Filters { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appintegrations-dataintegration-fileconfiguration.html#cfn-appintegrations-dataintegration-fileconfiguration-filters

Folders

Identifiers for the source folders to pull all files from recursively.

public string[] Folders { get; set; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appintegrations-dataintegration-fileconfiguration.html#cfn-appintegrations-dataintegration-fileconfiguration-folders

Implements

CfnDataIntegration.IFileConfigurationProperty
Back to top Generated by DocFX