interface CfnHypervisorProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.BackupGateway.CfnHypervisorProps |
Java | software.amazon.awscdk.services.backupgateway.CfnHypervisorProps |
Python | aws_cdk.aws_backupgateway.CfnHypervisorProps |
TypeScript | @aws-cdk/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 * as backupgateway from '@aws-cdk/aws-backupgateway';
const cfnHypervisorProps: backupgateway.CfnHypervisorProps = {
host: 'host',
kmsKeyArn: 'kmsKeyArn',
logGroupArn: 'logGroupArn',
name: 'name',
password: 'password',
tags: [{
key: 'key',
value: 'value',
}],
username: 'username',
};
Properties
Name | Type | Description |
---|---|---|
host? | string | The server host of the hypervisor. |
kms | string | The Amazon Resource Name (ARN) of the AWS Key Management Service used to encrypt the hypervisor. |
log | string | The Amazon Resource Name (ARN) of the group of gateways within the requested log. |
name? | string | The name of the hypervisor. |
password? | string | The password for the hypervisor. |
tags? | Cfn [] | The tags of the hypervisor configuration to import. |
username? | string | The 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:
Cfn
[]
(optional)
The tags of the hypervisor configuration to import.
username?
Type:
string
(optional)
The username for the hypervisor.