Skip to content

List License Configurations For Organization

licensemanager_list_license_configurations_for_organization R Documentation

Lists license configurations for an organization

Description

Lists license configurations for an organization.

Usage

licensemanager_list_license_configurations_for_organization(
  LicenseConfigurationArns, MaxResults, NextToken, Filters)

Arguments

LicenseConfigurationArns

License configuration ARNs.

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.

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"
        )
      ),
      LicenseExpiry = 123
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_license_configurations_for_organization(
  LicenseConfigurationArns = list(
    "string"
  ),
  MaxResults = 123,
  NextToken = "string",
  Filters = list(
    list(
      Name = "string",
      Values = list(
        "string"
      )
    )
  )
)