Describe Spot Datafeed Subscription
ec2_describe_spot_datafeed_subscription | R Documentation |
Describes the data feed for Spot Instances¶
Description¶
Describes the data feed for Spot Instances. For more information, see Spot Instance data feed in the Amazon EC2 User Guide.
Usage¶
ec2_describe_spot_datafeed_subscription(DryRun)
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
|
Value¶
A list with the following syntax:
list(
SpotDatafeedSubscription = list(
Bucket = "string",
Fault = list(
Code = "string",
Message = "string"
),
OwnerId = "string",
Prefix = "string",
State = "Active"|"Inactive"
)
)
Request syntax¶
svc$describe_spot_datafeed_subscription(
DryRun = TRUE|FALSE
)
Examples¶
## Not run:
# This example describes the Spot Instance datafeed subscription for your
# AWS account.
svc$describe_spot_datafeed_subscription()
## End(Not run)