interface StorageLocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EC2.CfnFpgaImage.StorageLocationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnFpgaImage_StorageLocationProperty |
Java | software.amazon.awscdk.services.ec2.CfnFpgaImage.StorageLocationProperty |
Python | aws_cdk.aws_ec2.CfnFpgaImage.StorageLocationProperty |
TypeScript | aws-cdk-lib » aws_ec2 » CfnFpgaImage » StorageLocationProperty |
Describes a storage location in Amazon S3.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ec2 as ec2 } from 'aws-cdk-lib';
const storageLocationProperty: ec2.CfnFpgaImage.StorageLocationProperty = {
bucket: 'bucket',
key: 'key',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket? | string | The name of the S3 bucket. |
| key? | string | The key. |
bucket?
Type:
string
(optional)
The name of the S3 bucket.
key?
Type:
string
(optional)
The key.

.NET
Go
Java
Python
TypeScript