Class: Aws::VerifiedPermissions::Types::DeletePolicyTemplateInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::VerifiedPermissions::Types::DeletePolicyTemplateInput
- 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 ID of the policy store that contains the policy template that you want to delete.
-
#policy_template_id ⇒ String
Specifies the ID of the policy template that you want to delete.
Instance Attribute Details
#policy_store_id ⇒ String
Specifies the ID of the policy store that contains the policy template that you want to delete.
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.
1926 1927 1928 1929 1930 1931 |
# File 'gems/aws-sdk-verifiedpermissions/lib/aws-sdk-verifiedpermissions/types.rb', line 1926 class DeletePolicyTemplateInput < Struct.new( :policy_store_id, :policy_template_id) SENSITIVE = [] include Aws::Structure end |
#policy_template_id ⇒ String
Specifies the ID of the policy template that you want to delete.
You can use the policy template name in place of the policy template
ID. When using a name, prefix it with name/. For example:
ID:
PTEXAMPLEabcdefg111111Name:
name/example-policy-template
1926 1927 1928 1929 1930 1931 |
# File 'gems/aws-sdk-verifiedpermissions/lib/aws-sdk-verifiedpermissions/types.rb', line 1926 class DeletePolicyTemplateInput < Struct.new( :policy_store_id, :policy_template_id) SENSITIVE = [] include Aws::Structure end |