aws-cdk-lib.aws_backupgateway.CfnHypervisorProps

interface CfnHypervisorProps

LanguageType name
.NETAmazon.CDK.aws_backupgateway.CfnHypervisorProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsbackupgateway#CfnHypervisorProps
Javaservices.backupgateway.CfnHypervisorProps
Pythonaws_cdk.aws_backupgateway.CfnHypervisorProps
TypeScript aws-cdk-lib » aws_backupgateway » CfnHypervisorProps

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 { aws_backupgateway as backupgateway } from 'aws-cdk-lib';
const cfnHypervisorProps: backupgateway.CfnHypervisorProps = {
  host: 'host',
  kmsKeyArn: 'kmsKeyArn',
  logGroupArn: 'logGroupArn',
  name: 'name',
  password: 'password',
  tags: [{
    key: 'key',
    value: 'value',
  }],
  username: 'username',
};

Properties

NameTypeDescription
host?stringThe server host of the hypervisor.
kmsKeyArn?stringThe Amazon Resource Name (ARN) of the AWS Key Management Service used to encrypt the hypervisor.
logGroupArn?stringThe Amazon Resource Name (ARN) of the group of gateways within the requested log.
name?stringThe name of the hypervisor.
password?stringThe password for the hypervisor.
tags?CfnTag[]The tags of the hypervisor configuration to import.
username?stringThe username for the hypervisor.

host?

Type: string (optional)

The server host of the hypervisor.

This can be either an IP address or a fully-qualified domain name (FQDN).


kmsKeyArn?

Type: string (optional)

The Amazon Resource Name (ARN) of the AWS Key Management Service used to encrypt the hypervisor.


logGroupArn?

Type: string (optional)

The Amazon Resource Name (ARN) of the group of gateways within the requested log.


name?

Type: string (optional)

The name of the hypervisor.


password?

Type: string (optional)

The password for the hypervisor.


tags?

Type: CfnTag[] (optional)

The tags of the hypervisor configuration to import.


username?

Type: string (optional)

The username for the hypervisor.