List License Configurations
licensemanager_list_license_configurations | R Documentation |
Lists the license configurations for your account¶
Description¶
Lists the license configurations for your account.
Usage¶
licensemanager_list_license_configurations(LicenseConfigurationArns,
MaxResults, NextToken, Filters)
Arguments¶
LicenseConfigurationArns
Amazon Resource Names (ARN) of the license configurations.
MaxResults
Maximum number of results to return in a single call.
NextToken
Token for the next set of results.
Filters
Filters to scope the results. The following filters and logical operators are supported:
licenseCountingType
- The dimension for which licenses are counted. Possible values arevCPU
|Instance
|Core
|Socket
. Logical operators areEQUALS
|NOT_EQUALS
.enforceLicenseCount
- A Boolean value that indicates whether hard license enforcement is used. Logical operators areEQUALS
|NOT_EQUALS
.usagelimitExceeded
- A Boolean value that indicates whether the available licenses have been exceeded. Logical operators areEQUALS
|NOT_EQUALS
.
Value¶
A list with the following syntax:
list(
LicenseConfigurations = list(
list(
LicenseConfigurationId = "string",
LicenseConfigurationArn = "string",
Name = "string",
Description = "string",
LicenseCountingType = "vCPU"|"Instance"|"Core"|"Socket",
LicenseRules = list(
"string"
),
LicenseCount = 123,
LicenseCountHardLimit = TRUE|FALSE,
DisassociateWhenNotFound = TRUE|FALSE,
ConsumedLicenses = 123,
Status = "string",
OwnerAccountId = "string",
ConsumedLicenseSummaryList = list(
list(
ResourceType = "EC2_INSTANCE"|"EC2_HOST"|"EC2_AMI"|"RDS"|"SYSTEMS_MANAGER_MANAGED_INSTANCE",
ConsumedLicenses = 123
)
),
ManagedResourceSummaryList = list(
list(
ResourceType = "EC2_INSTANCE"|"EC2_HOST"|"EC2_AMI"|"RDS"|"SYSTEMS_MANAGER_MANAGED_INSTANCE",
AssociationCount = 123
)
),
ProductInformationList = list(
list(
ResourceType = "string",
ProductInformationFilterList = list(
list(
ProductInformationFilterName = "string",
ProductInformationFilterValue = list(
"string"
),
ProductInformationFilterComparator = "string"
)
)
)
),
AutomatedDiscoveryInformation = list(
LastRunTime = as.POSIXct(
"2015-01-01"
)
)
)
),
NextToken = "string"
)