Interface ListLicenseConfigurationsRequest.Builder

    • Method Detail

      • licenseConfigurationArns

        ListLicenseConfigurationsRequest.Builder licenseConfigurationArns​(Collection<String> licenseConfigurationArns)

        Amazon Resource Names (ARN) of the license configurations.

        Parameters:
        licenseConfigurationArns - Amazon Resource Names (ARN) of the license configurations.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • licenseConfigurationArns

        ListLicenseConfigurationsRequest.Builder licenseConfigurationArns​(String... licenseConfigurationArns)

        Amazon Resource Names (ARN) of the license configurations.

        Parameters:
        licenseConfigurationArns - Amazon Resource Names (ARN) of the license configurations.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • maxResults

        ListLicenseConfigurationsRequest.Builder maxResults​(Integer maxResults)

        Maximum number of results to return in a single call.

        Parameters:
        maxResults - Maximum number of results to return in a single call.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • nextToken

        ListLicenseConfigurationsRequest.Builder nextToken​(String nextToken)

        Token for the next set of results.

        Parameters:
        nextToken - Token for the next set of results.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • filters

        ListLicenseConfigurationsRequest.Builder filters​(Collection<Filter> filters)

        Filters to scope the results. The following filters and logical operators are supported:

        • licenseCountingType - The dimension for which licenses are counted. Possible values are vCPU | Instance | Core | Socket. Logical operators are EQUALS | NOT_EQUALS.

        • enforceLicenseCount - A Boolean value that indicates whether hard license enforcement is used. Logical operators are EQUALS | NOT_EQUALS.

        • usagelimitExceeded - A Boolean value that indicates whether the available licenses have been exceeded. Logical operators are EQUALS | NOT_EQUALS.

        Parameters:
        filters - Filters to scope the results. The following filters and logical operators are supported:

        • licenseCountingType - The dimension for which licenses are counted. Possible values are vCPU | Instance | Core | Socket. Logical operators are EQUALS | NOT_EQUALS.

        • enforceLicenseCount - A Boolean value that indicates whether hard license enforcement is used. Logical operators are EQUALS | NOT_EQUALS.

        • usagelimitExceeded - A Boolean value that indicates whether the available licenses have been exceeded. Logical operators are EQUALS | NOT_EQUALS.

        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • filters

        ListLicenseConfigurationsRequest.Builder filters​(Filter... filters)

        Filters to scope the results. The following filters and logical operators are supported:

        • licenseCountingType - The dimension for which licenses are counted. Possible values are vCPU | Instance | Core | Socket. Logical operators are EQUALS | NOT_EQUALS.

        • enforceLicenseCount - A Boolean value that indicates whether hard license enforcement is used. Logical operators are EQUALS | NOT_EQUALS.

        • usagelimitExceeded - A Boolean value that indicates whether the available licenses have been exceeded. Logical operators are EQUALS | NOT_EQUALS.

        Parameters:
        filters - Filters to scope the results. The following filters and logical operators are supported:

        • licenseCountingType - The dimension for which licenses are counted. Possible values are vCPU | Instance | Core | Socket. Logical operators are EQUALS | NOT_EQUALS.

        • enforceLicenseCount - A Boolean value that indicates whether hard license enforcement is used. Logical operators are EQUALS | NOT_EQUALS.

        • usagelimitExceeded - A Boolean value that indicates whether the available licenses have been exceeded. Logical operators are EQUALS | NOT_EQUALS.

        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • filters

        ListLicenseConfigurationsRequest.Builder filters​(Consumer<Filter.Builder>... filters)

        Filters to scope the results. The following filters and logical operators are supported:

        • licenseCountingType - The dimension for which licenses are counted. Possible values are vCPU | Instance | Core | Socket. Logical operators are EQUALS | NOT_EQUALS.

        • enforceLicenseCount - A Boolean value that indicates whether hard license enforcement is used. Logical operators are EQUALS | NOT_EQUALS.

        • usagelimitExceeded - A Boolean value that indicates whether the available licenses have been exceeded. Logical operators are EQUALS | NOT_EQUALS.

        This is a convenience method that creates an instance of the Filter.Builder avoiding the need to create one manually via Filter.builder().

        When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to #filters(List).

        Parameters:
        filters - a consumer that will call methods on Filter.Builder
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        #filters(java.util.Collection)