Show / Hide Table of Contents

Interface ICfnHypervisorProps

Properties for defining a CfnHypervisor.

Namespace: Amazon.CDK.AWS.BackupGateway
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnHypervisorProps
Syntax (vb)
Public Interface ICfnHypervisorProps
Remarks

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

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.BackupGateway;

             var cfnHypervisorProps = new CfnHypervisorProps {
                 Host = "host",
                 KmsKeyArn = "kmsKeyArn",
                 LogGroupArn = "logGroupArn",
                 Name = "name",
                 Password = "password",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } },
                 Username = "username"
             };

Synopsis

Properties

Host

The server host of the hypervisor.

KmsKeyArn

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

LogGroupArn

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

Name

The name of the hypervisor.

Password

The password for the hypervisor.

Tags

The tags of the hypervisor configuration to import.

Username

The username for the hypervisor.

Properties

Host

The server host of the hypervisor.

string? Host { get; }
Property Value

string

Remarks

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

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

KmsKeyArn

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

string? KmsKeyArn { get; }
Property Value

string

Remarks

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

LogGroupArn

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

string? LogGroupArn { get; }
Property Value

string

Remarks

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

Name

The name of the hypervisor.

string? Name { get; }
Property Value

string

Remarks

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

Password

The password for the hypervisor.

string? Password { get; }
Property Value

string

Remarks

See: 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.

ICfnTag[]? Tags { get; }
Property Value

ICfnTag[]

Remarks

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

Username

The username for the hypervisor.

string? Username { get; }
Property Value

string

Remarks

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

Back to top Generated by DocFX