Class CfnCapabilityPropsMixin.S3LocationProperty
Specifies the details for the Amazon S3 file location that is being used with AWS B2B Data Interchange.
Implements
Inherited Members
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.
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.
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
Remarks
Key
Specifies the Amazon S3 key for the file location.
public string? Key { get; set; }