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