interface CfnPermissionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ACMPCA.Mixins.CfnPermissionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsacmpca/mixins#CfnPermissionMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.acmpca.mixins.CfnPermissionMixinProps |
Python | aws_cdk.mixins_preview.aws_acmpca.mixins.CfnPermissionMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_acmpca » mixins » CfnPermissionMixinProps |
Properties for CfnPermissionPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-acmpca-permission.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as acmpca_mixins } from '@aws-cdk/mixins-preview/aws-acmpca';
const cfnPermissionMixinProps: acmpca_mixins.CfnPermissionMixinProps = {
actions: ['actions'],
certificateAuthorityArn: 'certificateAuthorityArn',
principal: 'principal',
sourceAccount: 'sourceAccount',
};
Properties
| Name | Type | Description |
|---|---|---|
| actions? | string[] | The private CA actions that can be performed by the designated AWS service. |
| certificate | string | The Amazon Resource Number (ARN) of the private CA from which the permission was issued. |
| principal? | string | The AWS service or entity that holds the permission. |
| source | string | The ID of the account that assigned the permission. |
actions?
Type:
string[]
(optional)
The private CA actions that can be performed by the designated AWS service.
Supported actions are IssueCertificate , GetCertificate , and ListPermissions .
certificateAuthorityArn?
Type:
string
(optional)
The Amazon Resource Number (ARN) of the private CA from which the permission was issued.
principal?
Type:
string
(optional)
The AWS service or entity that holds the permission.
At this time, the only valid principal is acm.amazonaws.com .
sourceAccount?
Type:
string
(optional)
The ID of the account that assigned the permission.

.NET
Go
Java
Python
TypeScript