interface CfnDeliverySourceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Logs.Mixins.CfnDeliverySourceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslogs/mixins#CfnDeliverySourceMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.logs.mixins.CfnDeliverySourceMixinProps |
Python | aws_cdk.mixins_preview.aws_logs.mixins.CfnDeliverySourceMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_logs » mixins » CfnDeliverySourceMixinProps |
Properties for CfnDeliverySourcePropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-deliverysource.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as logs_mixins } from '@aws-cdk/mixins-preview/aws-logs';
const cfnDeliverySourceMixinProps: logs_mixins.CfnDeliverySourceMixinProps = {
logType: 'logType',
name: 'name',
resourceArn: 'resourceArn',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| log | string | The type of log that the source is sending. |
| name? | string | The unique name of the delivery source. |
| resource | string | The ARN of the AWS resource that is generating and sending logs. |
| tags? | Cfn[] | An array of key-value pairs to apply to the delivery source. |
logType?
Type:
string
(optional)
The type of log that the source is sending.
For valid values for this parameter, see the documentation for the source service.
name?
Type:
string
(optional)
The unique name of the delivery source.
resourceArn?
Type:
string
(optional)
The ARN of the AWS resource that is generating and sending logs.
For example, arn:aws:workmail:us-east-1:123456789012:organization/m-1234EXAMPLEabcd1234abcd1234abcd1234
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to the delivery source.
For more information, see Tag .

.NET
Go
Java
Python
TypeScript