interface CfnProfilePermissionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Signer.Mixins.CfnProfilePermissionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssigner/mixins#CfnProfilePermissionMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.signer.mixins.CfnProfilePermissionMixinProps |
Python | aws_cdk.mixins_preview.aws_signer.mixins.CfnProfilePermissionMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_signer » mixins » CfnProfilePermissionMixinProps |
Properties for CfnProfilePermissionPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as signer_mixins } from '@aws-cdk/mixins-preview/aws-signer';
const cfnProfilePermissionMixinProps: signer_mixins.CfnProfilePermissionMixinProps = {
action: 'action',
principal: 'principal',
profileName: 'profileName',
profileVersion: 'profileVersion',
statementId: 'statementId',
};
Properties
| Name | Type | Description |
|---|---|---|
| action? | string | The AWS Signer action permitted as part of cross-account permissions. |
| principal? | string | The AWS principal receiving cross-account permissions. |
| profile | string | The human-readable name of the signing profile. |
| profile | string | The version of the signing profile. |
| statement | string | A unique identifier for the cross-account permission statement. |
action?
Type:
string
(optional)
The AWS Signer action permitted as part of cross-account permissions.
principal?
Type:
string
(optional)
The AWS principal receiving cross-account permissions.
This may be an IAM role or another AWS account ID.
profileName?
Type:
string
(optional)
The human-readable name of the signing profile.
profileVersion?
Type:
string
(optional)
The version of the signing profile.
statementId?
Type:
string
(optional)
A unique identifier for the cross-account permission statement.

.NET
Go
Java
Python
TypeScript