interface CfnProfilePermissionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Signer.CfnProfilePermissionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssigner#CfnProfilePermissionMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.signer.CfnProfilePermissionMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_signer.CfnProfilePermissionMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_signer » 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 { aws_signer as signer } from '@aws-cdk/cfn-property-mixins';
const cfnProfilePermissionMixinProps: signer.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