Interface CfnExpressGatewayService.ExpressGatewayServiceAwsLogsConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnExpressGatewayService.ExpressGatewayServiceAwsLogsConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnExpressGatewayService
@Stability(Stable)
public static interface CfnExpressGatewayService.ExpressGatewayServiceAwsLogsConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Specifies the Amazon CloudWatch Logs configuration for the Express service container.
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.ecs.*;
ExpressGatewayServiceAwsLogsConfigurationProperty expressGatewayServiceAwsLogsConfigurationProperty = ExpressGatewayServiceAwsLogsConfigurationProperty.builder()
.logGroup("logGroup")
.logStreamPrefix("logStreamPrefix")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnExpressGatewayService.ExpressGatewayServiceAwsLogsConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The name of the CloudWatch Logs log group to send container logs to.The prefix for the CloudWatch Logs log stream names.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLogGroup
The name of the CloudWatch Logs log group to send container logs to.- See Also:
-
getLogStreamPrefix
The prefix for the CloudWatch Logs log stream names.The default for an Express service is
ecs.Default: - "ecs"
- See Also:
-
builder
@Stability(Stable) static CfnExpressGatewayService.ExpressGatewayServiceAwsLogsConfigurationProperty.Builder builder()
-