Interface CfnApiGatewayManagedOverrides.AccessLogSettingsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApiGatewayManagedOverrides.AccessLogSettingsProperty.Jsii$Proxy
- Enclosing class:
CfnApiGatewayManagedOverrides
@Stability(Stable)
public static interface CfnApiGatewayManagedOverrides.AccessLogSettingsProperty
extends software.amazon.jsii.JsiiSerializable
The
AccessLogSettings
property overrides the access log settings for an API Gateway-managed stage.
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.apigatewayv2.*; AccessLogSettingsProperty accessLogSettingsProperty = AccessLogSettingsProperty.builder() .destinationArn("destinationArn") .format("format") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnApiGatewayManagedOverrides.AccessLogSettingsProperty
static final class
An implementation forCfnApiGatewayManagedOverrides.AccessLogSettingsProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDestinationArn
The ARN of the CloudWatch Logs log group to receive access logs.- See Also:
-
getFormat
A single line format of the access logs of data, as specified by selected $context variables.The format must include at least $context.requestId.
- See Also:
-
builder
-