Table of Contents

Class CfnProfilePermissionProps

Namespace
Amazon.CDK.AWS.Signer
Assembly
Amazon.CDK.AWS.Signer.dll

Properties for defining a CfnProfilePermission.

public class CfnProfilePermissionProps : ICfnProfilePermissionProps
Inheritance
CfnProfilePermissionProps
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.Signer;

             var cfnProfilePermissionProps = new CfnProfilePermissionProps {
                 Action = "action",
                 Principal = "principal",
                 ProfileName = "profileName",
                 StatementId = "statementId",

                 // the properties below are optional
                 ProfileVersion = "profileVersion"
             };

Remarks

Constructors

CfnProfilePermissionProps()

public CfnProfilePermissionProps()

Properties

Action

The AWS Signer action permitted as part of cross-account permissions.

public string Action { get; set; }

Property Value

string

Remarks

Principal

The AWS principal receiving cross-account permissions.

public string Principal { get; set; }

Property Value

string

Remarks

ProfileName

The human-readable name of the signing profile.

public string ProfileName { get; set; }

Property Value

string

Remarks

ProfileVersion

The version of the signing profile.

public string? ProfileVersion { get; set; }

Property Value

string

Remarks

StatementId

A unique identifier for the cross-account permission statement.

public string StatementId { get; set; }

Property Value

string

Remarks