policy#
Exec module for managing Amazon IAM Policies.
- async idem_aws.exec.aws.iam.policy.get(hub, ctx, name: str, resource_id: str = None) Dict[source]#
Retrieves the specified AWS IAM Policy.
- Parameters:
- Returns:
- result(bool):
Whether the result of the function has been successful (
True) or not (False).- comment(list):
A list of messages.
- ret(dict or None):
The IAM Policy in “present” format.
- Return type:
Examples
Calling this exec module function from the cli:
idem exec aws.iam.policy.get name="idem_name" resource_id="resource_id"
Calling this exec module function from within a state module in pure python:
async def state_function(hub, ctx, name, resource_id, **kwargs): ret = await hub.exec.aws.iam.policy.get( ctx, name=name, resource_id=resource_id )
- async idem_aws.exec.aws.iam.policy.list_(hub, ctx, scope: str = None, only_attached: bool = None, path_prefix: str = None, policy_usage_filter: str = None) Dict[source]#
Lists AWS IAM Policies.
- Arg:
- scope(str, Optional):
The scope to use for filtering the results. To list only Amazon Web Services managed policies, set
scopetoAWS. To list only the customer managed policies in your Amazon Web Services account, setscopetoLocal. This parameter is optional. If it is not included, or if it is set toAll, all policies are returned.- only_attached (bool, Optional):
A flag to filter the results to only the attached policies. When
True, the returned list contains only the policies that are attached to an IAM user, group, or role. WhenFalse, or when the parameter is not included, all policies are returned.- path_prefix (str, Optional):
The path prefix for filtering the results. This parameter is optional. If it is not included, it defaults to a slash (
/), listing all policies. This parameter allows (through its regex pattern) a string of characters consisting of either a forward slash (/) by itself or a string that must begin and end with forward slashes. In addition, it can contain any ASCII character from the!(!) through theDELcharacter (), including most punctuation characters, digits, and upper and lowercased letters.- policy_usage_filter(str, Optional):
The policy usage method to use for filtering the results. To list only permissions policies, set the value to
PermissionsPolicy. To list only the policies used to set permissions boundaries, set the value toPermissionsBoundary. This parameter is optional. If it is not included, all policies are returned.
- Returns:
- result(bool):
Whether the result of the function has been successful (
True) or not (False).- comment(list):
A list of messages.
- ret(dict or None):
The IAM Policies in “present” format.
- Return type:
Examples
Calling this exec module function from the cli:
idem exec aws.iam.policy.list scope="ALL"
Calling this exec module function from within a state module in pure python:
async def state_function(hub, ctx, name, scope, **kwargs): ret = await hub.exec.aws.iam.policy.list( ctx, scope=scope )