// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: MIT-0 namespace Amazon.CDK.AWS.ECS.MyExtensions { public class CloudWatchAgentProps { /// /// Default: cwagent /// public string AgentContainerName { get; set; } = "cwagent"; /// /// Default: null /// public LogDriver LogDriver { get; set; } = null; } }