Show / Hide Table of Contents

Class ProfilePermissionReference

A reference to a ProfilePermission resource.

Inheritance
object
ProfilePermissionReference
Implements
IProfilePermissionReference
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

string

Remarks

ExampleMetadata: fixture=_generated

StatementId

The StatementId of the ProfilePermission resource.

public string StatementId { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IProfilePermissionReference
Back to top Generated by DocFX