interface CfnAccessLogSubscriptionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.VpcLattice.CfnAccessLogSubscriptionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsvpclattice#CfnAccessLogSubscriptionMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.vpclattice.CfnAccessLogSubscriptionMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_vpclattice.CfnAccessLogSubscriptionMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_vpclattice » 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 { aws_vpclattice as vpclattice } from '@aws-cdk/cfn-property-mixins';
const cfnAccessLogSubscriptionMixinProps: vpclattice.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