IdentitySourceReference
- class aws_cdk.aws_verifiedpermissions.IdentitySourceReference(*, identity_source_id, policy_store_id)
Bases:
object
A reference to a IdentitySource resource.
- Parameters:
identity_source_id (
str
) – The IdentitySourceId of the IdentitySource resource.policy_store_id (
str
) – The PolicyStoreId of the IdentitySource 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_verifiedpermissions as verifiedpermissions identity_source_reference = verifiedpermissions.IdentitySourceReference( identity_source_id="identitySourceId", policy_store_id="policyStoreId" )
Attributes
- identity_source_id
The IdentitySourceId of the IdentitySource resource.
- policy_store_id
The PolicyStoreId of the IdentitySource resource.