List Failures For License Configuration Operations
licensemanager_list_failures_for_license_configuration_operations | R Documentation |
Lists the license configuration operations that failed¶
Description¶
Lists the license configuration operations that failed.
Usage¶
licensemanager_list_failures_for_license_configuration_operations(
LicenseConfigurationArn, MaxResults, NextToken)
Arguments¶
LicenseConfigurationArn
[required] Amazon Resource Name of the license configuration.
MaxResults
Maximum number of results to return in a single call.
NextToken
Token for the next set of results.
Value¶
A list with the following syntax:
list(
LicenseOperationFailureList = list(
list(
ResourceArn = "string",
ResourceType = "EC2_INSTANCE"|"EC2_HOST"|"EC2_AMI"|"RDS"|"SYSTEMS_MANAGER_MANAGED_INSTANCE",
ErrorMessage = "string",
FailureTime = as.POSIXct(
"2015-01-01"
),
OperationName = "string",
ResourceOwnerId = "string",
OperationRequestedBy = "string",
MetadataList = list(
list(
Name = "string",
Value = "string"
)
)
)
),
NextToken = "string"
)