EnclaveCertificateIamRoleAssociationReference
- class aws_cdk.aws_ec2.EnclaveCertificateIamRoleAssociationReference(*, certificate_arn, role_arn)
Bases:
object
A reference to a EnclaveCertificateIamRoleAssociation resource.
- Parameters:
certificate_arn (
str
) – The CertificateArn of the EnclaveCertificateIamRoleAssociation resource.role_arn (
str
) – The RoleArn of the EnclaveCertificateIamRoleAssociation resource.
- 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 import aws_ec2 as ec2 enclave_certificate_iam_role_association_reference = ec2.EnclaveCertificateIamRoleAssociationReference( certificate_arn="certificateArn", role_arn="roleArn" )
Attributes
- certificate_arn
The CertificateArn of the EnclaveCertificateIamRoleAssociation resource.
- role_arn
The RoleArn of the EnclaveCertificateIamRoleAssociation resource.