ProfilePermissionReference

class aws_cdk.aws_signer.ProfilePermissionReference(*, profile_name, statement_id)

Bases: object

A 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 import aws_signer as signer

profile_permission_reference = 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.