Interface CfnAccessLogSubscriptionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAccessLogSubscriptionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:35.981Z")
@Stability(Stable)
public interface CfnAccessLogSubscriptionProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnAccessLogSubscription.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.vpclattice.*;
CfnAccessLogSubscriptionProps cfnAccessLogSubscriptionProps = CfnAccessLogSubscriptionProps.builder()
.destinationArn("destinationArn")
// the properties below are optional
.resourceIdentifier("resourceIdentifier")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAccessLogSubscriptionPropsstatic final classAn implementation forCfnAccessLogSubscriptionProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDestinationArn
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.
-
getResourceIdentifier
The ID or Amazon Resource Name (ARN) of the service network or service. -
getTags
The tags for the access log subscription. -
builder
-