interface CfnEnclaveCertificateIamRoleAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnEnclaveCertificateIamRoleAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnEnclaveCertificateIamRoleAssociationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnEnclaveCertificateIamRoleAssociationMixinProps |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnEnclaveCertificateIamRoleAssociationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnEnclaveCertificateIamRoleAssociationMixinProps |
Properties for CfnEnclaveCertificateIamRoleAssociationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ec2_mixins } from '@aws-cdk/mixins-preview/aws-ec2';
const cfnEnclaveCertificateIamRoleAssociationMixinProps: ec2_mixins.CfnEnclaveCertificateIamRoleAssociationMixinProps = {
certificateArn: 'certificateArn',
roleArn: 'roleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| certificate | string | The ARN of the ACM certificate with which to associate the IAM role. |
| role | string | The ARN of the IAM role to associate with the ACM certificate. |
certificateArn?
Type:
string
(optional)
The ARN of the ACM certificate with which to associate the IAM role.
roleArn?
Type:
string
(optional)
The ARN of the IAM role to associate with the ACM certificate.
You can associate up to 16 IAM roles with an ACM certificate.

.NET
Go
Java
Python
TypeScript