Class BucketReference
A reference to a Bucket resource.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Lightsail
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class BucketReference : IBucketReferenceSyntax (vb)
Public Class BucketReference Implements IBucketReferenceRemarks
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.Lightsail;
            var bucketReference = new BucketReference {
                BucketArn = "bucketArn",
                BucketName = "bucketName"
            };Synopsis
Constructors
| BucketReference() | A reference to a Bucket resource. | 
Properties
| BucketArn | The ARN of the Bucket resource. | 
| BucketName | The BucketName of the Bucket resource. | 
Constructors
BucketReference()
A reference to a Bucket resource.
public BucketReference()Remarks
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.Lightsail;
            var bucketReference = new BucketReference {
                BucketArn = "bucketArn",
                BucketName = "bucketName"
            };Properties
BucketArn
The ARN of the Bucket resource.
public string BucketArn { get; set; }Property Value
Remarks
ExampleMetadata: fixture=_generated
BucketName
The BucketName of the Bucket resource.
public string BucketName { get; set; }Property Value
Remarks
ExampleMetadata: fixture=_generated