Class StarPrincipal
A principal that uses a literal '*' in the IAM JSON language.
public class StarPrincipal : PrincipalBase, IAssumeRolePrincipal, IComparablePrincipal, IPrincipal, IGrantable
- Inheritance
-
StarPrincipal
- Implements
- Inherited Members
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.IAM;
var starPrincipal = new StarPrincipal();
Remarks
Some services behave differently when you specify Principal: ""
or Principal: { AWS: "" }
in their resource policy.
StarPrincipal
renders to Principal: *
. Most of the time, you
should use AnyPrincipal
instead.
ExampleMetadata: fixture=_generated
Constructors
StarPrincipal()
public StarPrincipal()
Properties
PolicyFragment
Return the policy fragment that identifies this principal in a Policy.
public override PrincipalPolicyFragment PolicyFragment { get; }
Property Value
Methods
DedupeString()
Return whether or not this principal is equal to the given principal.
public override string? DedupeString()
Returns
ToString()
Returns a string representation of an object.
public override string ToString()