Show / Hide Table of Contents

Class CfnCapabilityPropsMixin.S3LocationProperty

Specifies the details for the Amazon S3 file location that is being used with AWS B2B Data Interchange.

Inheritance
object
CfnCapabilityPropsMixin.S3LocationProperty
Implements
CfnCapabilityPropsMixin.IS3LocationProperty
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.B2BI
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnCapabilityPropsMixin.S3LocationProperty : CfnCapabilityPropsMixin.IS3LocationProperty
Syntax (vb)
Public Class CfnCapabilityPropsMixin.S3LocationProperty Implements CfnCapabilityPropsMixin.IS3LocationProperty
Remarks

File locations in Amazon S3 are identified using a combination of the bucket and key.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-capability-s3location.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.B2BI;

             var s3LocationProperty = new S3LocationProperty {
                 BucketName = "bucketName",
                 Key = "key"
             };

Synopsis

Constructors

S3LocationProperty()

Specifies the details for the Amazon S3 file location that is being used with AWS B2B Data Interchange.

Properties

BucketName

Specifies the name of the Amazon S3 bucket.

Key

Specifies the Amazon S3 key for the file location.

Constructors

S3LocationProperty()

Specifies the details for the Amazon S3 file location that is being used with AWS B2B Data Interchange.

public S3LocationProperty()
Remarks

File locations in Amazon S3 are identified using a combination of the bucket and key.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-capability-s3location.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.B2BI;

             var s3LocationProperty = new S3LocationProperty {
                 BucketName = "bucketName",
                 Key = "key"
             };

Properties

BucketName

Specifies the name of the Amazon S3 bucket.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-capability-s3location.html#cfn-b2bi-capability-s3location-bucketname

Key

Specifies the Amazon S3 key for the file location.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-b2bi-capability-s3location.html#cfn-b2bi-capability-s3location-key

Implements

CfnCapabilityPropsMixin.IS3LocationProperty
Back to top Generated by DocFX