class CanonicalUserPrincipal
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.IAM.CanonicalUserPrincipal | 
  Java | software.amazon.awscdk.services.iam.CanonicalUserPrincipal | 
  Python | aws_cdk.aws_iam.CanonicalUserPrincipal | 
  TypeScript (source) | @aws-cdk/aws-iam » CanonicalUserPrincipal | 
Implements
IAssume, IGrantable, IPrincipal, IComparable
Extends
Principal
A policy principal for canonicalUserIds - useful for S3 bucket policies that use Origin Access identities.
See https://docs.aws.amazon.com/general/latest/gr/acct-identifiers.html
and
for more details.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as iam from '@aws-cdk/aws-iam';
const canonicalUserPrincipal = new iam.CanonicalUserPrincipal('canonicalUserId');
Initializer
new CanonicalUserPrincipal(canonicalUserId: string)
Parameters
- canonicalUserId 
string— unique identifier assigned by AWS for every account. 
Properties
| Name | Type | Description | 
|---|---|---|
| assume | string | When this Principal is used in an AssumeRole policy, the action to use. | 
| canonical | string | unique identifier assigned by AWS for every account. | 
| grant | IPrincipal | The principal to grant permissions to. | 
| policy | Principal | Return the policy fragment that identifies this principal in a Policy. | 
| principal | string | The AWS account ID of this principal. | 
assumeRoleAction
Type:
string
When this Principal is used in an AssumeRole policy, the action to use.
canonicalUserId
Type:
string
unique identifier assigned by AWS for every account.
root user and IAM users for an account all see the same ID. (i.e. 79a59df900b949e55d96a1e698fbacedfd6e09d98eacf8f8d5218e7cd47ef2be)
grantPrincipal
Type:
IPrincipal
The principal to grant permissions to.
policyFragment
Type:
Principal
Return the policy fragment that identifies this principal in a Policy.
principalAccount?
Type:
string
(optional)
The AWS account ID of this principal.
Can be undefined when the account is not known (for example, for service principals). Can be a Token - in that case, it's assumed to be AWS::AccountId.
Methods
| Name | Description | 
|---|---|
| add | Add the princpial to the AssumeRolePolicyDocument. | 
| add | Add to the policy of this principal. | 
| add | Add to the policy of this principal. | 
| dedupe | Return whether or not this principal is equal to the given principal. | 
| to | JSON-ify the principal. | 
| to | Returns a string representation of an object. | 
| with | Returns a new PrincipalWithConditions using this principal as the base, with the passed conditions added. | 
| with | Returns a new principal using this principal as the base, with session tags enabled. | 
addToAssumeRolePolicy(document)    
public addToAssumeRolePolicy(document: PolicyDocument): void
Parameters
- document 
PolicyDocument  
Add the princpial to the AssumeRolePolicyDocument.
Add the statements to the AssumeRolePolicyDocument necessary to give this principal permissions to assume the given role.
addToPolicy(statement)  
public addToPolicy(statement: PolicyStatement): boolean
Parameters
- statement 
PolicyStatement  
Returns
boolean
Add to the policy of this principal.
addToPrincipalPolicy(_statement)   
public addToPrincipalPolicy(_statement: PolicyStatement): AddToPrincipalPolicyResult
Parameters
- _statement 
PolicyStatement  
Returns
Add to the policy of this principal.
dedupeString() 
public dedupeString(): string
Returns
string
Return whether or not this principal is equal to the given principal.
toJSON() 
public toJSON(): { [string]: string[] }
Returns
{ [string]: string[] }
JSON-ify the principal.
Used when JSON.stringify() is called
toString() 
public toString(): string
Returns
string
Returns a string representation of an object.
withConditions(conditions) 
public withConditions(conditions: { [string]: any }): PrincipalBase
Parameters
- conditions 
{ [string]: any } 
Returns
Returns a new PrincipalWithConditions using this principal as the base, with the passed conditions added.
When there is a value for the same operator and key in both the principal and the conditions parameter, the value from the conditions parameter will be used.
withSessionTags()  
public withSessionTags(): PrincipalBase
Returns
Returns a new principal using this principal as the base, with session tags enabled.

 .NET
 Java
 Python
 TypeScript (