Class: Aws::MPA::Types::ListPolicyVersionsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::MPA::Types::ListPolicyVersionsResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mpa/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
If present, indicates that more output is available than is included in the current response.
-
#policy_versions ⇒ Array<Types::PolicyVersionSummary>
An array of ‘PolicyVersionSummary` objects.
Instance Attribute Details
#next_token ⇒ String
If present, indicates that more output is available than is included in the current response. Use this value in the ‘NextToken` request parameter in a next call to the operation to get more output. You can repeat this until the `NextToken` response element returns `null`.
1387 1388 1389 1390 1391 1392 |
# File 'lib/aws-sdk-mpa/types.rb', line 1387 class ListPolicyVersionsResponse < Struct.new( :next_token, :policy_versions) SENSITIVE = [] include Aws::Structure end |
#policy_versions ⇒ Array<Types::PolicyVersionSummary>
An array of ‘PolicyVersionSummary` objects. Contains details for the version of the policies that define the permissions for team resources.
The protected operation for a service integration might require specific permissions. For more information, see [How other services work with Multi-party approval] in the *Multi-party approval User Guide*.
[1]: docs.aws.amazon.com/mpa/latest/userguide/mpa-integrations.html
1387 1388 1389 1390 1391 1392 |
# File 'lib/aws-sdk-mpa/types.rb', line 1387 class ListPolicyVersionsResponse < Struct.new( :next_token, :policy_versions) SENSITIVE = [] include Aws::Structure end |