Interface CfnFpgaImageMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFpgaImageMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-02T11:03:26.419Z")
@Stability(Stable)
public interface CfnFpgaImageMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnFpgaImagePropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.ec2.*;
CfnFpgaImageMixinProps cfnFpgaImageMixinProps = CfnFpgaImageMixinProps.builder()
.description("description")
.inputStorageLocation(StorageLocationProperty.builder()
.bucket("bucket")
.key("key")
.build())
.logsStorageLocation(StorageLocationProperty.builder()
.bucket("bucket")
.key("key")
.build())
.name("name")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFpgaImageMixinPropsstatic final classAn implementation forCfnFpgaImageMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
A description for the AFI.- See Also:
-
getInputStorageLocation
Describes a storage location in Amazon S3.Returns union: either
IResolvableorCfnFpgaImagePropsMixin.StorageLocationProperty- See Also:
-
getLogsStorageLocation
Describes a storage location in Amazon S3.Returns union: either
IResolvableorCfnFpgaImagePropsMixin.StorageLocationProperty- See Also:
-
getName
A name for the AFI.- See Also:
-
getTags
The tags assigned to the FPGA image.- See Also:
-
builder
- Returns:
- a
CfnFpgaImageMixinProps.BuilderofCfnFpgaImageMixinProps
-