/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the synthetics-2017-10-11.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.Synthetics.Model { /// /// A structure that contains input information for a canary run. /// public partial class CanaryRunConfigInput { private bool? _activeTracing; private Dictionary _environmentVariables = new Dictionary(); private int? _memoryInMB; private int? _timeoutInSeconds; /// /// Gets and sets the property ActiveTracing. /// /// Specifies whether this canary is to use active X-Ray tracing when it runs. Active /// tracing enables this canary run to be displayed in the ServiceLens and X-Ray service /// maps even if the canary does not hit an endpoint that has X-Ray tracing enabled. Using /// X-Ray tracing incurs charges. For more information, see /// Canaries and X-Ray tracing. /// /// /// /// You can enable active tracing only for canaries that use version syn-nodejs-2.0 /// or later for their canary runtime. /// /// public bool ActiveTracing { get { return this._activeTracing.GetValueOrDefault(); } set { this._activeTracing = value; } } // Check to see if ActiveTracing property is set internal bool IsSetActiveTracing() { return this._activeTracing.HasValue; } /// /// Gets and sets the property EnvironmentVariables. /// /// Specifies the keys and values to use for any environment variables used in the canary /// script. Use the following format: /// /// /// /// { "key1" : "value1", "key2" : "value2", ...} /// /// /// /// Keys must start with a letter and be at least two characters. The total size of your /// environment variables cannot exceed 4 KB. You can't specify any Lambda reserved environment /// variables as the keys for your environment variables. For more information about reserved /// keys, see /// Runtime environment variables. /// /// /// /// The environment variables keys and values are not encrypted. Do not store sensitive /// information in this field. /// /// /// public Dictionary EnvironmentVariables { get { return this._environmentVariables; } set { this._environmentVariables = value; } } // Check to see if EnvironmentVariables property is set internal bool IsSetEnvironmentVariables() { return this._environmentVariables != null && this._environmentVariables.Count > 0; } /// /// Gets and sets the property MemoryInMB. /// /// The maximum amount of memory available to the canary while it is running, in MB. This /// value must be a multiple of 64. /// /// [AWSProperty(Min=960, Max=3008)] public int MemoryInMB { get { return this._memoryInMB.GetValueOrDefault(); } set { this._memoryInMB = value; } } // Check to see if MemoryInMB property is set internal bool IsSetMemoryInMB() { return this._memoryInMB.HasValue; } /// /// Gets and sets the property TimeoutInSeconds. /// /// How long the canary is allowed to run before it must stop. You can't set this time /// to be longer than the frequency of the runs of this canary. /// /// /// /// If you omit this field, the frequency of the canary is used as this value, up to a /// maximum of 14 minutes. /// /// [AWSProperty(Min=3, Max=840)] public int TimeoutInSeconds { get { return this._timeoutInSeconds.GetValueOrDefault(); } set { this._timeoutInSeconds = value; } } // Check to see if TimeoutInSeconds property is set internal bool IsSetTimeoutInSeconds() { return this._timeoutInSeconds.HasValue; } } }