Class CfnHypervisor
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.core.Construct
software.amazon.awscdk.core.CfnElement
software.amazon.awscdk.core.CfnRefElement
software.amazon.awscdk.core.CfnResource
software.amazon.awscdk.services.backupgateway.CfnHypervisor
- All Implemented Interfaces:
IConstruct
,IDependable
,IInspectable
,software.amazon.jsii.JsiiSerializable
,software.constructs.IConstruct
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:55.822Z")
@Stability(Stable)
public class CfnHypervisor
extends CfnResource
implements IInspectable
A CloudFormation
AWS::BackupGateway::Hypervisor
.
Represents the hypervisor's permissions to which the gateway will connect.
A hypervisor is hardware, software, or firmware that creates and manages virtual machines, and allocates resources to them.
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.*; CfnHypervisor cfnHypervisor = CfnHypervisor.Builder.create(this, "MyCfnHypervisor") .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 classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
Nested classes/interfaces inherited from interface software.amazon.awscdk.core.IConstruct
IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$Default
Nested classes/interfaces inherited from interface software.amazon.awscdk.core.IInspectable
IInspectable.Jsii$Default, IInspectable.Jsii$Proxy
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
The CloudFormation resource type name for this resource class. -
Constructor Summary
ModifierConstructorDescriptionCfnHypervisor
(Construct scope, String id) Create a newAWS::BackupGateway::Hypervisor
.CfnHypervisor
(Construct scope, String id, CfnHypervisorProps props) Create a newAWS::BackupGateway::Hypervisor
.protected
CfnHypervisor
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
CfnHypervisor
(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Modifier and TypeMethodDescriptionReturnsHypervisorArn
, an Amazon Resource Name (ARN) that uniquely identifies a Hypervisor.getHost()
The server host of the hypervisor.The Amazon Resource Name (ARN) of the AWS Key Management Service used to encrypt the hypervisor.The Amazon Resource Name (ARN) of the group of gateways within the requested log.getName()
The name of the hypervisor.The password for the hypervisor.getTags()
The tags of the hypervisor configuration to import.The username for the hypervisor.void
inspect
(TreeInspector inspector) Examines the CloudFormation resource and discloses attributes.renderProperties
(Map<String, Object> props) void
The server host of the hypervisor.void
setKmsKeyArn
(String value) The Amazon Resource Name (ARN) of the AWS Key Management Service used to encrypt the hypervisor.void
setLogGroupArn
(String value) The Amazon Resource Name (ARN) of the group of gateways within the requested log.void
The name of the hypervisor.void
setPassword
(String value) The password for the hypervisor.void
setUsername
(String value) The username for the hypervisor.Methods inherited from class software.amazon.awscdk.core.CfnResource
addDeletionOverride, addDependsOn, addMetadata, addOverride, addPropertyDeletionOverride, addPropertyOverride, applyRemovalPolicy, applyRemovalPolicy, applyRemovalPolicy, getAtt, getCfnOptions, getCfnResourceType, getMetadata, getUpdatedProperites, isCfnResource, shouldSynthesize, toString, validateProperties
Methods inherited from class software.amazon.awscdk.core.CfnRefElement
getRef
Methods inherited from class software.amazon.awscdk.core.CfnElement
getCreationStack, getLogicalId, getStack, isCfnElement, overrideLogicalId
Methods inherited from class software.amazon.awscdk.core.Construct
getNode, isConstruct, onPrepare, onSynthesize, onValidate, prepare, synthesize, validate
Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
-
-
Constructor Details
-
CfnHypervisor
protected CfnHypervisor(software.amazon.jsii.JsiiObjectRef objRef) -
CfnHypervisor
protected CfnHypervisor(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
CfnHypervisor
@Stability(Stable) public CfnHypervisor(@NotNull Construct scope, @NotNull String id, @Nullable CfnHypervisorProps props) Create a newAWS::BackupGateway::Hypervisor
.- Parameters:
scope
-- scope in which this resource is defined.
id
-- scoped id of the resource.
props
-- resource properties.
-
CfnHypervisor
Create a newAWS::BackupGateway::Hypervisor
.- Parameters:
scope
-- scope in which this resource is defined.
id
-- scoped id of the resource.
-
-
Method Details
-
inspect
Examines the CloudFormation resource and discloses attributes.- Specified by:
inspect
in interfaceIInspectable
- Parameters:
inspector
-- tree inspector to collect and process attributes.
-
renderProperties
@Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String, Object> props) - Overrides:
renderProperties
in classCfnResource
- Parameters:
props
- This parameter is required.
-
getAttrHypervisorArn
ReturnsHypervisorArn
, an Amazon Resource Name (ARN) that uniquely identifies a Hypervisor.For example:
arn:aws:backup-gateway:us-east-1:123456789012:hypervisor/hype-1234D67D
-
getCfnProperties
- Overrides:
getCfnProperties
in classCfnResource
-
getTags
The tags of the hypervisor configuration to import. -
getHost
The server host of the hypervisor.This can be either an IP address or a fully-qualified domain name (FQDN).
-
setHost
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. -
setKmsKeyArn
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. -
setLogGroupArn
The Amazon Resource Name (ARN) of the group of gateways within the requested log. -
getName
The name of the hypervisor. -
setName
The name of the hypervisor. -
getPassword
The password for the hypervisor. -
setPassword
The password for the hypervisor. -
getUsername
The username for the hypervisor. -
setUsername
The username for the hypervisor.
-