interface EnclaveOptionsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnInstancePropsMixin.EnclaveOptionsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnInstancePropsMixin_EnclaveOptionsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnInstancePropsMixin.EnclaveOptionsProperty |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnInstancePropsMixin.EnclaveOptionsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » CfnInstancePropsMixin » EnclaveOptionsProperty |
Indicates whether the instance is enabled for AWS Nitro Enclaves.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ec2 as ec2 } from '@aws-cdk/cfn-property-mixins';
const enclaveOptionsProperty: ec2.CfnInstancePropsMixin.EnclaveOptionsProperty = {
enabled: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| enabled? | boolean | IResolvable | If this parameter is set to true , the instance is enabled for AWS Nitro Enclaves; |
enabled?
Type:
boolean | IResolvable
(optional)
If this parameter is set to true , the instance is enabled for AWS Nitro Enclaves;
otherwise, it is not enabled for AWS Nitro Enclaves.

.NET
Go
Java
Python
TypeScript