interface CfnFpgaImageProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EC2.CfnFpgaImageProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnFpgaImageProps |
Java | software.amazon.awscdk.services.ec2.CfnFpgaImageProps |
Python | aws_cdk.aws_ec2.CfnFpgaImageProps |
TypeScript | aws-cdk-lib » aws_ec2 » CfnFpgaImageProps |
Properties for defining a CfnFpgaImage.
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-lib';
const cfnFpgaImageProps: ec2.CfnFpgaImageProps = {
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