Describe Fpga Images
ec2_describe_fpga_images | R Documentation |
Describes the Amazon FPGA Images (AFIs) available to you¶
Description¶
Describes the Amazon FPGA Images (AFIs) available to you. These include public AFIs, private AFIs that you own, and AFIs owned by other Amazon Web Services accounts for which you have load permissions.
Usage¶
ec2_describe_fpga_images(DryRun, FpgaImageIds, Owners, Filters,
NextToken, MaxResults)
Arguments¶
DryRun |
Checks whether you have the required permissions for the action,
without actually making the request, and provides an error response. If
you have the required permissions, the error response is
|
FpgaImageIds |
The AFI IDs. |
Owners |
Filters the AFI by owner. Specify an Amazon Web Services account
ID, |
Filters |
The filters.
|
NextToken |
The token to retrieve the next page of results. |
MaxResults |
The maximum number of results to return in a single call. |
Value¶
A list with the following syntax:
list(
FpgaImages = list(
list(
FpgaImageId = "string",
FpgaImageGlobalId = "string",
Name = "string",
Description = "string",
ShellVersion = "string",
PciId = list(
DeviceId = "string",
VendorId = "string",
SubsystemId = "string",
SubsystemVendorId = "string"
),
State = list(
Code = "pending"|"failed"|"available"|"unavailable",
Message = "string"
),
CreateTime = as.POSIXct(
"2015-01-01"
),
UpdateTime = as.POSIXct(
"2015-01-01"
),
OwnerId = "string",
OwnerAlias = "string",
ProductCodes = list(
list(
ProductCodeId = "string",
ProductCodeType = "devpay"|"marketplace"
)
),
Tags = list(
list(
Key = "string",
Value = "string"
)
),
Public = TRUE|FALSE,
DataRetentionSupport = TRUE|FALSE,
InstanceTypes = list(
"string"
)
)
),
NextToken = "string"
)
Request syntax¶
svc$describe_fpga_images(
DryRun = TRUE|FALSE,
FpgaImageIds = list(
"string"
),
Owners = list(
"string"
),
Filters = list(
list(
Name = "string",
Values = list(
"string"
)
)
),
NextToken = "string",
MaxResults = 123
)