interface CfnFpgaImageMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnFpgaImageMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnFpgaImageMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnFpgaImageMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnFpgaImageMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » CfnFpgaImageMixinProps |
Properties for CfnFpgaImagePropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-fpgaimage.html
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 cfnFpgaImageMixinProps: ec2.CfnFpgaImageMixinProps = {
description: 'description',
inputStorageLocation: {
bucket: 'bucket',
key: 'key',
},
logsStorageLocation: {
bucket: 'bucket',
key: 'key',
},
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | A description for the AFI. |
| input | IResolvable | Storage | Describes a storage location in Amazon S3. |
| logs | IResolvable | Storage | Describes a storage location in Amazon S3. |
| name? | string | A name for the AFI. |
| tags? | Cfn[] | The tags assigned to the FPGA image. |
description?
Type:
string
(optional)
A description for the AFI.
inputStorageLocation?
Type:
IResolvable | Storage
(optional)
Describes a storage location in Amazon S3.
logsStorageLocation?
Type:
IResolvable | Storage
(optional)
Describes a storage location in Amazon S3.
name?
Type:
string
(optional)
A name for the AFI.
tags?
Type:
Cfn[]
(optional)
The tags assigned to the FPGA image.

.NET
Go
Java
Python
TypeScript