interface CfnAccessLogSubscriptionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.VpcLattice.Mixins.CfnAccessLogSubscriptionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsvpclattice/mixins#CfnAccessLogSubscriptionMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.vpclattice.mixins.CfnAccessLogSubscriptionMixinProps |
Python | aws_cdk.mixins_preview.aws_vpclattice.mixins.CfnAccessLogSubscriptionMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_vpclattice » mixins » CfnAccessLogSubscriptionMixinProps |
Properties for CfnAccessLogSubscriptionPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as vpclattice_mixins } from '@aws-cdk/mixins-preview/aws-vpclattice';
const cfnAccessLogSubscriptionMixinProps: vpclattice_mixins.CfnAccessLogSubscriptionMixinProps = {
destinationArn: 'destinationArn',
resourceIdentifier: 'resourceIdentifier',
serviceNetworkLogType: 'serviceNetworkLogType',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| destination | string | The Amazon Resource Name (ARN) of the destination. |
| resource | string | The ID or ARN of the service network or service. |
| service | string | Log type of the service network. |
| tags? | Cfn[] | The tags for the access log subscription. |
destinationArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the destination.
The supported destination types are CloudWatch Log groups, Kinesis Data Firehose delivery streams, and Amazon S3 buckets.
resourceIdentifier?
Type:
string
(optional)
The ID or ARN of the service network or service.
serviceNetworkLogType?
Type:
string
(optional)
Log type of the service network.
tags?
Type:
Cfn[]
(optional)
The tags for the access log subscription.

.NET
Go
Java
Python
TypeScript