Table of Contents

Interface ICfnProfilePermissionProps

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

Properties for defining a CfnProfilePermission.

public interface ICfnProfilePermissionProps

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

Properties

Action

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

string Action { get; }

Property Value

string

Remarks

Principal

The AWS principal receiving cross-account permissions.

string Principal { get; }

Property Value

string

Remarks

ProfileName

The human-readable name of the signing profile.

string ProfileName { get; }

Property Value

string

Remarks

ProfileVersion

The version of the signing profile.

string? ProfileVersion { get; }

Property Value

string

Remarks

StatementId

A unique identifier for the cross-account permission statement.

string StatementId { get; }

Property Value

string

Remarks