Interface CfnHypervisorMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnHypervisorMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:19:56.298Z")
@Stability(Stable)
public interface CfnHypervisorMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnHypervisorPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.backupgateway.*;
CfnHypervisorMixinProps cfnHypervisorMixinProps = CfnHypervisorMixinProps.builder()
.host("host")
.kmsKeyArn("kmsKeyArn")
.logGroupArn("logGroupArn")
.name("name")
.password("password")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.username("username")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnHypervisorMixinPropsstatic final classAn implementation forCfnHypervisorMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringgetHost()The server host of the hypervisor.default StringThe Amazon Resource Name (ARN) of the AWS Key Management Service used to encrypt the hypervisor.default StringThe Amazon Resource Name (ARN) of the group of gateways within the requested log.default StringgetName()The name of the hypervisor.default StringThe password for the hypervisor.getTags()The tags of the hypervisor configuration to import.default StringThe username for the hypervisor.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getHost
The server host of the hypervisor.This can be either an IP address or a fully-qualified domain name (FQDN).
- See Also:
-
getKmsKeyArn
The Amazon Resource Name (ARN) of the AWS Key Management Service used to encrypt the hypervisor.- See Also:
-
getLogGroupArn
The Amazon Resource Name (ARN) of the group of gateways within the requested log.- See Also:
-
getName
The name of the hypervisor.- See Also:
-
getPassword
The password for the hypervisor.- See Also:
-
getTags
The tags of the hypervisor configuration to import.- See Also:
-
getUsername
The username for the hypervisor.- See Also:
-
builder
- Returns:
- a
CfnHypervisorMixinProps.BuilderofCfnHypervisorMixinProps
-