You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Indicates whether the instance is enabled for Amazon Web Services Nitro Enclaves. For more information, see [ What is Amazon Web Services Nitro Enclaves?](https://docs.aws.amazon.com/enclaves/latest/user/nitro-enclave.html) in the Amazon Web Services Nitro Enclaves User Guide.
74816
+
public struct EnclaveOptionsRequest: Swift.Sendable {
74817
+
/// To enable the instance for Amazon Web Services Nitro Enclaves, set this parameter to true.
74818
+
public var enabled: Swift.Bool?
74819
+
74820
+
public init(
74821
+
enabled: Swift.Bool? = nil
74822
+
) {
74823
+
self.enabled = enabled
74824
+
}
74825
+
}
74826
+
}
74827
+
74813
74828
extension EC2ClientTypes {
74814
74829
74815
74830
public struct BlobAttributeValue: Swift.Sendable {
@@ -74838,6 +74853,8 @@ public struct ModifyInstanceAttributeInput: Swift.Sendable {
74838
74853
public var ebsOptimized: EC2ClientTypes.AttributeBooleanValue?
74839
74854
/// Set to true to enable enhanced networking with ENA for the instance. This option is supported only for HVM instances. Specifying this option with a PV instance can make it unreachable.
74840
74855
public var enaSupport: EC2ClientTypes.AttributeBooleanValue?
74856
+
/// Enables or disables the instance for Amazon Web Services Nitro Enclaves. For more information, see the [Amazon Web Services Nitro Enclaves User Guide](https://docs.aws.amazon.com/enclaves/latest/user/nitro-enclave.html).
74857
+
public var enclaveOptions: EC2ClientTypes.EnclaveOptionsRequest?
74841
74858
/// Replaces the security groups of the instance with the specified security groups. You must specify the ID of at least one security group, even if it's just the default security group for the VPC.
74842
74859
public var groups: [Swift.String]?
74843
74860
/// The ID of the instance.
@@ -74868,6 +74885,7 @@ public struct ModifyInstanceAttributeInput: Swift.Sendable {
/// Indicates whether the instance is enabled for Amazon Web Services Nitro Enclaves. For more information, see [ What is Amazon Web Services Nitro Enclaves?](https://docs.aws.amazon.com/enclaves/latest/user/nitro-enclave.html) in the Amazon Web Services Nitro Enclaves User Guide.
81752
-
public struct EnclaveOptionsRequest: Swift.Sendable {
81753
-
/// To enable the instance for Amazon Web Services Nitro Enclaves, set this parameter to true.
81754
-
public var enabled: Swift.Bool?
81755
-
81756
-
public init(
81757
-
enabled: Swift.Bool? = nil
81758
-
) {
81759
-
self.enabled = enabled
81760
-
}
81761
-
}
81762
-
}
81763
-
81764
81768
extension EC2ClientTypes {
81765
81769
81766
81770
/// Indicates whether your instance is configured for hibernation. This parameter is valid only if the instance meets the [hibernation prerequisites](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/hibernating-prerequisites.html). For more information, see [Hibernate your Amazon EC2 instance](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/Hibernate.html) in the Amazon EC2 User Guide.
0 commit comments