Show / Hide Table of Contents

Class CfnTask.DestinationProperty

Specifies where DataSync uploads your task report.

Inheritance
object
CfnTask.DestinationProperty
Implements
CfnTask.IDestinationProperty
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.DataSync
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTask.DestinationProperty : CfnTask.IDestinationProperty
Syntax (vb)
Public Class CfnTask.DestinationProperty Implements CfnTask.IDestinationProperty
Remarks

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

             var destinationProperty = new DestinationProperty {
                 S3 = new S3Property {
                     BucketAccessRoleArn = "bucketAccessRoleArn",
                     S3BucketArn = "s3BucketArn",
                     Subdirectory = "subdirectory"
                 }
             };

Synopsis

Constructors

DestinationProperty()

Specifies where DataSync uploads your task report.

Properties

S3

Specifies the Amazon S3 bucket where DataSync uploads your task report.

Constructors

DestinationProperty()

Specifies where DataSync uploads your task report.

public DestinationProperty()
Remarks

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

             var destinationProperty = new DestinationProperty {
                 S3 = new S3Property {
                     BucketAccessRoleArn = "bucketAccessRoleArn",
                     S3BucketArn = "s3BucketArn",
                     Subdirectory = "subdirectory"
                 }
             };

Properties

S3

Specifies the Amazon S3 bucket where DataSync uploads your task report.

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

object

Remarks

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

Type union: either IResolvable or CfnTask.IS3Property

Implements

CfnTask.IDestinationProperty
Back to top Generated by DocFX