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
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
Remarks
This can be either an IP address or a fully-qualified domain name (FQDN).
KmsKeyArn
The Amazon Resource Name (ARN) of the AWS Key Management Service used to encrypt the hypervisor.
string? KmsKeyArn { get; }
Property Value
Remarks
LogGroupArn
The Amazon Resource Name (ARN) of the group of gateways within the requested log.
string? LogGroupArn { get; }
Property Value
Remarks
Name
The name of the hypervisor.
string? Name { get; }
Property Value
Remarks
Password
The password for the hypervisor.
string? Password { get; }
Property Value
Remarks
Tags
The tags of the hypervisor configuration to import.
ICfnTag[]? Tags { get; }
Property Value
ICfnTag[]
Remarks
Username
The username for the hypervisor.
string? Username { get; }