ResourcePolicyReference
- class aws_cdk.interfaces.aws_ssm.ResourcePolicyReference(*, policy_id, resource_arn)
Bases:
objectA reference to a ResourcePolicy resource.
- Parameters:
policy_id (
str) – The PolicyId of the ResourcePolicy resource.resource_arn (
str) – The ResourceArn of the ResourcePolicy 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.interfaces import aws_ssm as interfaces_aws_ssm resource_policy_reference = interfaces_aws_ssm.ResourcePolicyReference( policy_id="policyId", resource_arn="resourceArn" )
Attributes
- policy_id
The PolicyId of the ResourcePolicy resource.
- resource_arn
The ResourceArn of the ResourcePolicy resource.