Class: Aws::VerifiedPermissions::Types::GetPolicyStoreInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::VerifiedPermissions::Types::GetPolicyStoreInput
- Defined in:
- gems/aws-sdk-verifiedpermissions/lib/aws-sdk-verifiedpermissions/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#policy_store_id ⇒ String
Specifies the policy store that you want information about.
-
#tags ⇒ Boolean
Specifies whether to return the tags that are attached to the policy store.
Instance Attribute Details
#policy_store_id ⇒ String
Specifies the policy store that you want information about.
To specify a policy store, use its ID or alias name. When using an
alias name, prefix it with policy-store-alias/. For example:
ID:
PSEXAMPLEabcdefg111111Alias name:
policy-store-alias/example-policy-store
To view aliases, use ListPolicyStoreAliases.
2521 2522 2523 2524 2525 2526 |
# File 'gems/aws-sdk-verifiedpermissions/lib/aws-sdk-verifiedpermissions/types.rb', line 2521 class GetPolicyStoreInput < Struct.new( :policy_store_id, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Boolean
Specifies whether to return the tags that are attached to the policy store. If this parameter is included in the API call, the tags are returned, otherwise they are not returned.
tags response parameter is
omitted from the response.
2521 2522 2523 2524 2525 2526 |
# File 'gems/aws-sdk-verifiedpermissions/lib/aws-sdk-verifiedpermissions/types.rb', line 2521 class GetPolicyStoreInput < Struct.new( :policy_store_id, :tags) SENSITIVE = [] include Aws::Structure end |