public Configuration()

in src/Amazon.CloudWatch.EMF/Config/Configuration.cs [14:30]


        public Configuration(
            string serviceName,
            string serviceType,
            string logGroupName,
            string logStreamName,
            string agentEndPoint,
            int agentBufferSize,
            Environments environmentOverride)
        {
            ServiceName = serviceName;
            ServiceType = serviceType;
            LogGroupName = logGroupName;
            LogStreamName = logStreamName;
            AgentEndPoint = agentEndPoint;
            AgentBufferSize = agentBufferSize;
            EnvironmentOverride = environmentOverride;
        }