Interface ICfnHypervisorProps
Properties for defining a CfnHypervisor
.
Namespace: Amazon.CDK.AWS.BackupGateway
Assembly: Amazon.CDK.AWS.BackupGateway.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.
virtual string Host { get; }
Property Value
System.String
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.
virtual string KmsKeyArn { get; }
Property Value
System.String
Remarks
LogGroupArn
The Amazon Resource Name (ARN) of the group of gateways within the requested log.
virtual string LogGroupArn { get; }
Property Value
System.String
Remarks
Name
The name of the hypervisor.
virtual string Name { get; }
Property Value
System.String
Remarks
Password
The password for the hypervisor.
virtual string Password { get; }
Property Value
System.String
Remarks
Tags
The tags of the hypervisor configuration to import.
virtual ICfnTag[] Tags { get; }
Property Value
ICfnTag[]
Remarks
Username
The username for the hypervisor.
virtual string Username { get; }
Property Value
System.String