Show / Hide Table of Contents

Class CfnTaskPropsMixin.ManifestConfigProperty

Configures a manifest, which is a list of files or objects that you want AWS DataSync to transfer.

Inheritance
object
CfnTaskPropsMixin.ManifestConfigProperty
Implements
CfnTaskPropsMixin.IManifestConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.DataSync
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnTaskPropsMixin.ManifestConfigProperty : CfnTaskPropsMixin.IManifestConfigProperty
Syntax (vb)
Public Class CfnTaskPropsMixin.ManifestConfigProperty Implements CfnTaskPropsMixin.IManifestConfigProperty
Remarks

For more information and configuration examples, see Specifying what DataSync transfers by using a manifest .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-task-manifestconfig.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.CfnPropertyMixins.AWS.DataSync;

             var manifestConfigProperty = new ManifestConfigProperty {
                 Action = "action",
                 Format = "format",
                 Source = new SourceProperty {
                     S3 = new ManifestConfigSourceS3Property {
                         BucketAccessRoleArn = "bucketAccessRoleArn",
                         ManifestObjectPath = "manifestObjectPath",
                         ManifestObjectVersionId = "manifestObjectVersionId",
                         S3BucketArn = "s3BucketArn"
                     }
                 }
             };

Synopsis

Constructors

ManifestConfigProperty()

Configures a manifest, which is a list of files or objects that you want AWS DataSync to transfer.

Properties

Action

Specifies what DataSync uses the manifest for.

Format

Specifies the file format of your manifest.

Source

Specifies the manifest that you want DataSync to use and where it's hosted.

Constructors

ManifestConfigProperty()

Configures a manifest, which is a list of files or objects that you want AWS DataSync to transfer.

public ManifestConfigProperty()
Remarks

For more information and configuration examples, see Specifying what DataSync transfers by using a manifest .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-task-manifestconfig.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.CfnPropertyMixins.AWS.DataSync;

             var manifestConfigProperty = new ManifestConfigProperty {
                 Action = "action",
                 Format = "format",
                 Source = new SourceProperty {
                     S3 = new ManifestConfigSourceS3Property {
                         BucketAccessRoleArn = "bucketAccessRoleArn",
                         ManifestObjectPath = "manifestObjectPath",
                         ManifestObjectVersionId = "manifestObjectVersionId",
                         S3BucketArn = "s3BucketArn"
                     }
                 }
             };

Properties

Action

Specifies what DataSync uses the manifest for.

public string? Action { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-task-manifestconfig.html#cfn-datasync-task-manifestconfig-action

Format

Specifies the file format of your manifest.

public string? Format { get; set; }
Property Value

string

Remarks

For more information, see Creating a manifest .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-task-manifestconfig.html#cfn-datasync-task-manifestconfig-format

Source

Specifies the manifest that you want DataSync to use and where it's hosted.

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

object

Remarks
You must specify this parameter if you're configuring a new manifest on or after February 7, 2024.

If you don't, you'll get a 400 status code and ValidationException error stating that you're missing the IAM role for DataSync to access the S3 bucket where you're hosting your manifest. For more information, see Providing DataSync access to your manifest .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-task-manifestconfig.html#cfn-datasync-task-manifestconfig-source

Type union: either IResolvable or CfnTaskPropsMixin.ISourceProperty

Implements

CfnTaskPropsMixin.IManifestConfigProperty
Back to top Generated by DocFX