CfnEnclaveCertificateIamRoleAssociationMixinProps
- class aws_cdk.mixins_preview.aws_ec2.mixins.CfnEnclaveCertificateIamRoleAssociationMixinProps(*, certificate_arn=None, role_arn=None)
Bases:
objectProperties for CfnEnclaveCertificateIamRoleAssociationPropsMixin.
- Parameters:
certificate_arn (
Optional[str]) – The ARN of the ACM certificate with which to associate the IAM role.role_arn (
Optional[str]) – The ARN of the IAM role to associate with the ACM certificate. You can associate up to 16 IAM roles with an ACM certificate.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_ec2 import mixins as ec2_mixins cfn_enclave_certificate_iam_role_association_mixin_props = ec2_mixins.CfnEnclaveCertificateIamRoleAssociationMixinProps( certificate_arn="certificateArn", role_arn="roleArn" )
Attributes
- certificate_arn
The ARN of the ACM certificate with which to associate the IAM role.
- role_arn
The ARN of the IAM role to associate with the ACM certificate.
You can associate up to 16 IAM roles with an ACM certificate.