interface StorageLocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnFpgaImagePropsMixin.StorageLocationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnFpgaImagePropsMixin_StorageLocationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnFpgaImagePropsMixin.StorageLocationProperty |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnFpgaImagePropsMixin.StorageLocationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » CfnFpgaImagePropsMixin » 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/cfn-property-mixins';
const storageLocationProperty: ec2.CfnFpgaImagePropsMixin.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