Class CfnFpgaImage.StorageLocationProperty
Describes a storage location in Amazon S3.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnFpgaImage.StorageLocationProperty : CfnFpgaImage.IStorageLocationProperty
Syntax (vb)
Public Class CfnFpgaImage.StorageLocationProperty Implements CfnFpgaImage.IStorageLocationProperty
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.EC2;
var storageLocationProperty = new StorageLocationProperty {
Bucket = "bucket",
Key = "key"
};
Synopsis
Constructors
| StorageLocationProperty() | Describes a storage location in Amazon S3. |
Properties
| Bucket | The name of the S3 bucket. |
| Key | The key. |
Constructors
StorageLocationProperty()
Describes a storage location in Amazon S3.
public StorageLocationProperty()
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.EC2;
var storageLocationProperty = new StorageLocationProperty {
Bucket = "bucket",
Key = "key"
};
Properties
Bucket
The name of the S3 bucket.
public string? Bucket { get; set; }
Property Value
Remarks
Key
The key.
public string? Key { get; set; }