Class: Aws::SSM::Types::ListAssociationsRequest

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

Overview

Note:

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

{
  association_filter_list: [
    {
      key: "InstanceId", # required, accepts InstanceId, Name, AssociationId, AssociationStatusName, LastExecutedBefore, LastExecutedAfter, AssociationName
      value: "AssociationFilterValue", # required
    },
  ],
  max_results: 1,
  next_token: "NextToken",
}

Instance Attribute Summary collapse

Instance Attribute Details

#association_filter_listArray<Types::AssociationFilter>

One or more filters. Use a filter to return a more specific list of results.

Returns:



9853
9854
9855
9856
9857
9858
# File 'lib/aws-sdk-ssm/types.rb', line 9853

class ListAssociationsRequest < Struct.new(
  :association_filter_list,
  :max_results,
  :next_token)
  include Aws::Structure
end

#max_resultsInteger

The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.

Returns:

  • (Integer)


9853
9854
9855
9856
9857
9858
# File 'lib/aws-sdk-ssm/types.rb', line 9853

class ListAssociationsRequest < Struct.new(
  :association_filter_list,
  :max_results,
  :next_token)
  include Aws::Structure
end

#next_tokenString

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

Returns:

  • (String)


9853
9854
9855
9856
9857
9858
# File 'lib/aws-sdk-ssm/types.rb', line 9853

class ListAssociationsRequest < Struct.new(
  :association_filter_list,
  :max_results,
  :next_token)
  include Aws::Structure
end