class CfnHypervisorLogsMixin
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.BackupGateway.Mixins.CfnHypervisorLogsMixin |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbackupgateway/mixins#CfnHypervisorLogsMixin |
Java | software.amazon.awscdk.mixins.preview.services.backupgateway.mixins.CfnHypervisorLogsMixin |
Python | aws_cdk.mixins_preview.aws_backupgateway.mixins.CfnHypervisorLogsMixin |
TypeScript | @aws-cdk/mixins-preview » aws_backupgateway » mixins » CfnHypervisorLogsMixin |
Implements
IMixin
Extends
Mixin
Represents the hypervisor's permissions to which the gateway will connect.
A hypervisor is hardware, software, or firmware that creates and manages virtual machines, and allocates resources to them.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_logs as logs } from '@aws-cdk/mixins-preview';
import { mixins as backupgateway_mixins } from '@aws-cdk/mixins-preview/aws-backupgateway';
declare const logsDelivery: logs.ILogsDelivery;
const cfnHypervisorLogsMixin = new backupgateway_mixins.CfnHypervisorLogsMixin('logType', logsDelivery);
Initializer
new CfnHypervisorLogsMixin(logType: string, logDelivery: ILogsDelivery)
Parameters
- logType
string— Type of logs that are getting vended. - logDelivery
ILogs— Object in charge of setting up the delivery source, delivery destination, and delivery connection.Delivery
Create a mixin to enable vended logs for AWS::BackupGateway::Hypervisor.
Properties
| Name | Type | Description |
|---|---|---|
| log | ILogs | |
| log | string | |
| static BGW_HYPERVISOR_LOGS | Cfn | |
| static DATA_ACCESS_LOGS | Cfn |
logDelivery
Type:
ILogs
logType
Type:
string
static BGW_HYPERVISOR_LOGS
Type:
Cfn
static DATA_ACCESS_LOGS
Type:
Cfn
Methods
| Name | Description |
|---|---|
| apply | Apply vended logs configuration to the construct. |
| supports(construct) | Check if this mixin supports the given construct (has vendedLogs property). |
applyTo(resource)
public applyTo(resource: IConstruct): IConstruct
Parameters
- resource
IConstruct
Returns
Apply vended logs configuration to the construct.
supports(construct)
public supports(construct: IConstruct): boolean
Parameters
- construct
IConstruct
Returns
boolean
Check if this mixin supports the given construct (has vendedLogs property).

.NET
Go
Java
Python
TypeScript