Class ProfilePermissionReference
A reference to a ProfilePermission resource.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Signer
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ProfilePermissionReference : IProfilePermissionReference
Syntax (vb)
Public Class ProfilePermissionReference Implements IProfilePermissionReference
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Signer;
var profilePermissionReference = new ProfilePermissionReference {
ProfileName = "profileName",
StatementId = "statementId"
};
Synopsis
Constructors
ProfilePermissionReference() | A reference to a ProfilePermission resource. |
Properties
ProfileName | The ProfileName of the ProfilePermission resource. |
StatementId | The StatementId of the ProfilePermission resource. |
Constructors
ProfilePermissionReference()
A reference to a ProfilePermission resource.
public ProfilePermissionReference()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Signer;
var profilePermissionReference = new ProfilePermissionReference {
ProfileName = "profileName",
StatementId = "statementId"
};
Properties
ProfileName
The ProfileName of the ProfilePermission resource.
public string ProfileName { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
StatementId
The StatementId of the ProfilePermission resource.
public string StatementId { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated