CfnHypervisorProps

class aws_cdk.aws_backupgateway.CfnHypervisorProps(*, host=None, kms_key_arn=None, log_group_arn=None, name=None, password=None, tags=None, username=None)

Bases: object

Properties for defining a CfnHypervisor.

Parameters:
  • host (Optional[str]) – The server host of the hypervisor. This can be either an IP address or a fully-qualified domain name (FQDN).

  • kms_key_arn (Optional[str]) – The Amazon Resource Name (ARN) of the AWS Key Management Service used to encrypt the hypervisor.

  • log_group_arn (Optional[str]) – The Amazon Resource Name (ARN) of the group of gateways within the requested log.

  • name (Optional[str]) – The name of the hypervisor.

  • password (Optional[str]) – The password for the hypervisor.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – The tags of the hypervisor configuration to import.

  • username (Optional[str]) – The username for the hypervisor.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backupgateway-hypervisor.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_backupgateway as backupgateway

cfn_hypervisor_props = backupgateway.CfnHypervisorProps(
    host="host",
    kms_key_arn="kmsKeyArn",
    log_group_arn="logGroupArn",
    name="name",
    password="password",
    tags=[CfnTag(
        key="key",
        value="value"
    )],
    username="username"
)

Attributes

host

The server host of the hypervisor.

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

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backupgateway-hypervisor.html#cfn-backupgateway-hypervisor-host

kms_key_arn

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

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backupgateway-hypervisor.html#cfn-backupgateway-hypervisor-kmskeyarn

log_group_arn

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

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backupgateway-hypervisor.html#cfn-backupgateway-hypervisor-loggrouparn

name

The name of the hypervisor.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backupgateway-hypervisor.html#cfn-backupgateway-hypervisor-name

password

The password for the hypervisor.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backupgateway-hypervisor.html#cfn-backupgateway-hypervisor-password

tags

The tags of the hypervisor configuration to import.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backupgateway-hypervisor.html#cfn-backupgateway-hypervisor-tags

username

The username for the hypervisor.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-backupgateway-hypervisor.html#cfn-backupgateway-hypervisor-username