Class: Aws::WorkSpaces::Types::DescribeWorkspaceBundlesRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-workspaces/types.rb

Overview

Note:

When making an API call, you may pass DescribeWorkspaceBundlesRequest data as a hash:

{
  bundle_ids: ["BundleId"],
  owner: "BundleOwner",
  next_token: "PaginationToken",
}

Instance Attribute Summary collapse

Instance Attribute Details

#bundle_idsArray<String>

The identifiers of the bundles. You cannot combine this parameter with any other filter.

Returns:

  • (Array<String>)


619
620
621
622
623
624
# File 'lib/aws-sdk-workspaces/types.rb', line 619

class DescribeWorkspaceBundlesRequest < Struct.new(
  :bundle_ids,
  :owner,
  :next_token)
  include Aws::Structure
end

#next_tokenString

The token for the next set of results. (You received this token from a previous call.)

Returns:

  • (String)


619
620
621
622
623
624
# File 'lib/aws-sdk-workspaces/types.rb', line 619

class DescribeWorkspaceBundlesRequest < Struct.new(
  :bundle_ids,
  :owner,
  :next_token)
  include Aws::Structure
end

#ownerString

The owner of the bundles. You cannot combine this parameter with any other filter.

Specify ‘AMAZON` to describe the bundles provided by AWS or null to describe the bundles that belong to your account.

Returns:

  • (String)


619
620
621
622
623
624
# File 'lib/aws-sdk-workspaces/types.rb', line 619

class DescribeWorkspaceBundlesRequest < Struct.new(
  :bundle_ids,
  :owner,
  :next_token)
  include Aws::Structure
end