ProfilePermissionReference
- class aws_cdk.interfaces.aws_signer.ProfilePermissionReference(*, profile_name, statement_id)
Bases:
objectA reference to a ProfilePermission resource.
- Parameters:
profile_name (
str) – The ProfileName of the ProfilePermission resource.statement_id (
str) – The StatementId of the ProfilePermission 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_signer as interfaces_aws_signer profile_permission_reference = interfaces_aws_signer.ProfilePermissionReference( profile_name="profileName", statement_id="statementId" )
Attributes
- profile_name
The ProfileName of the ProfilePermission resource.
- statement_id
The StatementId of the ProfilePermission resource.