Interface CfnHypervisorProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnHypervisorProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:55.823Z")
@Stability(Stable)
public interface CfnHypervisorProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnHypervisor.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.backupgateway.*;
CfnHypervisorProps cfnHypervisorProps = CfnHypervisorProps.builder()
.host("host")
.kmsKeyArn("kmsKeyArn")
.logGroupArn("logGroupArn")
.name("name")
.password("password")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.username("username")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnHypervisorPropsstatic final classAn implementation forCfnHypervisorProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnHypervisorProps.Builderbuilder()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).
-
getKmsKeyArn
The Amazon Resource Name (ARN) of the AWS Key Management Service used to encrypt the hypervisor. -
getLogGroupArn
The Amazon Resource Name (ARN) of the group of gateways within the requested log. -
getName
The name of the hypervisor. -
getPassword
The password for the hypervisor. -
getTags
The tags of the hypervisor configuration to import. -
getUsername
The username for the hypervisor. -
builder
- Returns:
- a
CfnHypervisorProps.BuilderofCfnHypervisorProps
-