GroupPolicyReference
- class aws_cdk.aws_iam.GroupPolicyReference(*, group_name, policy_name)
Bases:
object
A reference to a GroupPolicy resource.
- Parameters:
group_name (
str
) – The GroupName of the GroupPolicy resource.policy_name (
str
) – The PolicyName of the GroupPolicy resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_iam as iam group_policy_reference = iam.GroupPolicyReference( group_name="groupName", policy_name="policyName" )
Attributes
- group_name
The GroupName of the GroupPolicy resource.
- policy_name
The PolicyName of the GroupPolicy resource.