interface IdentitySourceReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.VerifiedPermissions.IdentitySourceReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsverifiedpermissions#IdentitySourceReference |
Java | software.amazon.awscdk.interfaces.verifiedpermissions.IdentitySourceReference |
Python | aws_cdk.interfaces.aws_verifiedpermissions.IdentitySourceReference |
TypeScript | aws-cdk-lib » interfaces » aws_verifiedpermissions » IdentitySourceReference |
A reference to a IdentitySource resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_verifiedpermissions as interfaces_aws_verifiedpermissions } from 'aws-cdk-lib/interfaces';
const identitySourceReference: interfaces_aws_verifiedpermissions.IdentitySourceReference = {
identitySourceId: 'identitySourceId',
policyStoreId: 'policyStoreId',
};
Properties
| Name | Type | Description |
|---|---|---|
| identity | string | The IdentitySourceId of the IdentitySource resource. |
| policy | string | The PolicyStoreId of the IdentitySource resource. |
identitySourceId
Type:
string
The IdentitySourceId of the IdentitySource resource.
policyStoreId
Type:
string
The PolicyStoreId of the IdentitySource resource.

.NET
Go
Java
Python
TypeScript