Synthetics ********** Client ====== class Synthetics.Client A low-level client representing Synthetics You can use Amazon CloudWatch Synthetics to continually monitor your services. You can create and manage *canaries*, which are modular, lightweight scripts that monitor your endpoints and APIs from the outside-in. You can set up your canaries to run 24 hours a day, once per minute. The canaries help you check the availability and latency of your web services and troubleshoot anomalies by investigating load time data, screenshots of the UI, logs, and metrics. The canaries seamlessly integrate with CloudWatch ServiceLens to help you trace the causes of impacted nodes in your applications. For more information, see Using ServiceLens to Monitor the Health of Your Applications in the *Amazon CloudWatch User Guide*. Before you create and manage canaries, be aware of the security considerations. For more information, see Security Considerations for Synthetics Canaries. import boto3 client = boto3.client('synthetics') These are the available methods: * associate_resource * can_paginate * close * create_canary * create_group * delete_canary * delete_group * describe_canaries * describe_canaries_last_run * describe_runtime_versions * disassociate_resource * get_canary * get_canary_runs * get_group * get_paginator * get_waiter * list_associated_groups * list_group_resources * list_groups * list_tags_for_resource * start_canary * start_canary_dry_run * stop_canary * tag_resource * untag_resource * update_canary Synthetics / Client / describe_canaries_last_run describe_canaries_last_run ************************** Synthetics.Client.describe_canaries_last_run(**kwargs) Use this operation to see information from the most recent run of each canary that you have created. This operation supports resource-level authorization using an IAM policy and the "Names" parameter. If you specify the "Names" parameter, the operation is successful only if you have authorization to view all the canaries that you specify in your request. If you do not have permission to view any of the canaries, the request fails with a 403 response. You are required to use the "Names" parameter if you are logged on to a user or role that has an IAM policy that restricts which canaries that you are allowed to view. For more information, see Limiting a user to viewing specific canaries. See also: AWS API Documentation **Request Syntax** response = client.describe_canaries_last_run( NextToken='string', MaxResults=123, Names=[ 'string', ] ) Parameters: * **NextToken** (*string*) -- A token that indicates that there is more data available. You can use this token in a subsequent "DescribeCanariesLastRun" operation to retrieve the next set of results. * **MaxResults** (*integer*) -- Specify this parameter to limit how many runs are returned each time you use the "DescribeLastRun" operation. If you omit this parameter, the default of 100 is used. * **Names** (*list*) -- Use this parameter to return only canaries that match the names that you specify here. You can specify as many as five canary names. If you specify this parameter, the operation is successful only if you have authorization to view all the canaries that you specify in your request. If you do not have permission to view any of the canaries, the request fails with a 403 response. You are required to use the "Names" parameter if you are logged on to a user or role that has an IAM policy that restricts which canaries that you are allowed to view. For more information, see Limiting a user to viewing specific canaries. * *(string) --* Return type: dict Returns: **Response Syntax** { 'CanariesLastRun': [ { 'CanaryName': 'string', 'LastRun': { 'Id': 'string', 'ScheduledRunId': 'string', 'RetryAttempt': 123, 'Name': 'string', 'Status': { 'State': 'RUNNING'|'PASSED'|'FAILED', 'StateReason': 'string', 'StateReasonCode': 'CANARY_FAILURE'|'EXECUTION_FAILURE', 'TestResult': 'PASSED'|'FAILED'|'UNKNOWN' }, 'Timeline': { 'Started': datetime(2015, 1, 1), 'Completed': datetime(2015, 1, 1), 'MetricTimestampForRunAndRetries': datetime(2015, 1, 1) }, 'ArtifactS3Location': 'string', 'DryRunConfig': { 'DryRunId': 'string' } } }, ], 'NextToken': 'string' } **Response Structure** * *(dict) --* * **CanariesLastRun** *(list) --* An array that contains the information from the most recent run of each canary. * *(dict) --* This structure contains information about the most recent run of a single canary. * **CanaryName** *(string) --* The name of the canary. * **LastRun** *(dict) --* The results from this canary's most recent run. * **Id** *(string) --* A unique ID that identifies this canary run. * **ScheduledRunId** *(string) --* The ID of the scheduled canary run. * **RetryAttempt** *(integer) --* The count in number of the retry attempt. * **Name** *(string) --* The name of the canary. * **Status** *(dict) --* The status of this run. * **State** *(string) --* The current state of the run. * **StateReason** *(string) --* If run of the canary failed, this field contains the reason for the error. * **StateReasonCode** *(string) --* If this value is "CANARY_FAILURE", either the canary script failed or Synthetics ran into a fatal error when running the canary. For example, a canary timeout misconfiguration setting can cause the canary to timeout before Synthetics can evaluate its status. If this value is "EXECUTION_FAILURE", a non-critical failure occurred such as failing to save generated debug artifacts (for example, screenshots or har files). If both types of failures occurred, the "CANARY_FAILURE" takes precedence. To understand the exact error, use the StateReason API. * **TestResult** *(string) --* Specifies the status of canary script for this run. When Synthetics tries to determine the status but fails, the result is marked as "UNKNOWN". For the overall status of canary run, see State. * **Timeline** *(dict) --* A structure that contains the start and end times of this run. * **Started** *(datetime) --* The start time of the run. * **Completed** *(datetime) --* The end time of the run. * **MetricTimestampForRunAndRetries** *(datetime) --* The time at which the metrics will be generated for this run or retries. * **ArtifactS3Location** *(string) --* The location where the canary stored artifacts from the run. Artifacts include the log file, screenshots, and HAR files. * **DryRunConfig** *(dict) --* Returns the dry run configurations for a canary. * **DryRunId** *(string) --* The DryRunId associated with an existing canary’s dry run. You can use this DryRunId to retrieve information about the dry run. * **NextToken** *(string) --* A token that indicates that there is more data available. You can use this token in a subsequent "DescribeCanariesLastRun" operation to retrieve the next set of results. **Exceptions** * "Synthetics.Client.exceptions.InternalServerException" * "Synthetics.Client.exceptions.ValidationException" Synthetics / Client / get_paginator get_paginator ************* Synthetics.Client.get_paginator(operation_name) Create a paginator for an operation. Parameters: **operation_name** (*string*) -- The operation name. This is the same name as the method name on the client. For example, if the method name is "create_foo", and you'd normally invoke the operation as "client.create_foo(**kwargs)", if the "create_foo" operation can be paginated, you can use the call "client.get_paginator("create_foo")". Raises: **OperationNotPageableError** -- Raised if the operation is not pageable. You can use the "client.can_paginate" method to check if an operation is pageable. Return type: "botocore.paginate.Paginator" Returns: A paginator object. Synthetics / Client / start_canary_dry_run start_canary_dry_run ******************** Synthetics.Client.start_canary_dry_run(**kwargs) Use this operation to start a dry run for a canary that has already been created See also: AWS API Documentation **Request Syntax** response = client.start_canary_dry_run( Name='string', Code={ 'S3Bucket': 'string', 'S3Key': 'string', 'S3Version': 'string', 'ZipFile': b'bytes', 'Handler': 'string', 'Dependencies': [ { 'Type': 'LambdaLayer', 'Reference': 'string' }, ] }, RuntimeVersion='string', RunConfig={ 'TimeoutInSeconds': 123, 'MemoryInMB': 123, 'ActiveTracing': True|False, 'EnvironmentVariables': { 'string': 'string' }, 'EphemeralStorage': 123 }, VpcConfig={ 'SubnetIds': [ 'string', ], 'SecurityGroupIds': [ 'string', ], 'Ipv6AllowedForDualStack': True|False }, ExecutionRoleArn='string', SuccessRetentionPeriodInDays=123, FailureRetentionPeriodInDays=123, VisualReference={ 'BaseScreenshots': [ { 'ScreenshotName': 'string', 'IgnoreCoordinates': [ 'string', ] }, ], 'BaseCanaryRunId': 'string' }, ArtifactS3Location='string', ArtifactConfig={ 'S3Encryption': { 'EncryptionMode': 'SSE_S3'|'SSE_KMS', 'KmsKeyArn': 'string' } }, ProvisionedResourceCleanup='AUTOMATIC'|'OFF' ) Parameters: * **Name** (*string*) -- **[REQUIRED]** The name of the canary that you want to dry run. To find canary names, use DescribeCanaries. * **Code** (*dict*) -- Use this structure to input your script code for the canary. This structure contains the Lambda handler with the location where the canary should start running the script. If the script is stored in an Amazon S3 bucket, the bucket name, key, and version are also included. If the script was passed into the canary directly, the script code is contained in the value of "Zipfile". If you are uploading your canary scripts with an Amazon S3 bucket, your zip file should include your script in a certain folder structure. * For Node.js canaries, the folder structure must be "nodejs/node_modules/myCanaryFilename.js" For more information, see Packaging your Node.js canary files * For Python canaries, the folder structure must be "python/myCanaryFilename.py" or "python/myFolder/myCanaryFilename.py" For more information, see Packaging your Python canary files * **S3Bucket** *(string) --* If your canary script is located in Amazon S3, specify the bucket name here. Do not include "s3://" as the start of the bucket name. * **S3Key** *(string) --* The Amazon S3 key of your script. For more information, see Working with Amazon S3 Objects. * **S3Version** *(string) --* The Amazon S3 version ID of your script. * **ZipFile** *(bytes) --* If you input your canary script directly into the canary instead of referring to an Amazon S3 location, the value of this parameter is the base64-encoded contents of the .zip file that contains the script. It must be smaller than 225 Kb. For large canary scripts, we recommend that you use an Amazon S3 location instead of inputting it directly with this parameter. * **Handler** *(string) --* **[REQUIRED]** The entry point to use for the source code when running the canary. For canaries that use the "syn-python-selenium-1.0" runtime or a "syn-nodejs.puppeteer" runtime earlier than "syn-nodejs.puppeteer-3.4", the handler must be specified as "fileName.handler". For "syn-python-selenium-1.1", "syn- nodejs.puppeteer-3.4", and later runtimes, the handler can be specified as >>``<>``<<, or you can specify a folder where canary scripts reside as >>``<>``<<. * **Dependencies** *(list) --* A list of dependencies that should be used for running this canary. Specify the dependencies as a key-value pair, where the key is the type of dependency and the value is the dependency reference. * *(dict) --* A structure that contains information about a dependency for a canary. * **Type** *(string) --* The type of dependency. Valid value is "LambdaLayer". * **Reference** *(string) --* **[REQUIRED]** The dependency reference. For Lambda layers, this is the ARN of the Lambda layer. For more information about Lambda ARN format, see Lambda. * **RuntimeVersion** (*string*) -- Specifies the runtime version to use for the canary. For a list of valid runtime versions and for more information about runtime versions, see Canary Runtime Versions. * **RunConfig** (*dict*) -- A structure that contains input information for a canary run. * **TimeoutInSeconds** *(integer) --* 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. * **MemoryInMB** *(integer) --* The maximum amount of memory available to the canary while it is running, in MB. This value must be a multiple of 64. * **ActiveTracing** *(boolean) --* 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. * **EnvironmentVariables** *(dict) --* 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. Warning: Environment variable keys and values are encrypted at rest using Amazon Web Services owned KMS keys. However, the environment variables are not encrypted on the client side. Do not store sensitive information in them. * *(string) --* * *(string) --* * **EphemeralStorage** *(integer) --* Specifies the amount of ephemeral storage (in MB) to allocate for the canary run during execution. This temporary storage is used for storing canary run artifacts (which are uploaded to an Amazon S3 bucket at the end of the run), and any canary browser operations. This temporary storage is cleared after the run is completed. Default storage value is 1024 MB. * **VpcConfig** (*dict*) -- If this canary is to test an endpoint in a VPC, this structure contains information about the subnets and security groups of the VPC endpoint. For more information, see Running a Canary in a VPC. * **SubnetIds** *(list) --* The IDs of the subnets where this canary is to run. * *(string) --* * **SecurityGroupIds** *(list) --* The IDs of the security groups for this canary. * *(string) --* * **Ipv6AllowedForDualStack** *(boolean) --* Set this to "true" to allow outbound IPv6 traffic on VPC canaries that are connected to dual-stack subnets. The default is "false" * **ExecutionRoleArn** (*string*) -- The ARN of the IAM role to be used to run the canary. This role must already exist, and must include "lambda.amazonaws.com" as a principal in the trust policy. The role must also have the following permissions: * **SuccessRetentionPeriodInDays** (*integer*) -- The number of days to retain data about successful runs of this canary. If you omit this field, the default of 31 days is used. The valid range is 1 to 455 days. This setting affects the range of information returned by GetCanaryRuns, as well as the range of information displayed in the Synthetics console. * **FailureRetentionPeriodInDays** (*integer*) -- The number of days to retain data about failed runs of this canary. If you omit this field, the default of 31 days is used. The valid range is 1 to 455 days. This setting affects the range of information returned by GetCanaryRuns, as well as the range of information displayed in the Synthetics console. * **VisualReference** (*dict*) -- An object that specifies what screenshots to use as a baseline for visual monitoring by this canary. It can optionally also specify parts of the screenshots to ignore during the visual monitoring comparison. Visual monitoring is supported only on canaries running the **syn-puppeteer-node-3.2** runtime or later. For more information, see Visual monitoring and Visual monitoring blueprint * **BaseScreenshots** *(list) --* An array of screenshots that will be used as the baseline for visual monitoring in future runs of this canary. If there is a screenshot that you don't want to be used for visual monitoring, remove it from this array. * *(dict) --* A structure representing a screenshot that is used as a baseline during visual monitoring comparisons made by the canary. * **ScreenshotName** *(string) --* **[REQUIRED]** The name of the screenshot. This is generated the first time the canary is run after the "UpdateCanary" operation that specified for this canary to perform visual monitoring. * **IgnoreCoordinates** *(list) --* Coordinates that define the part of a screen to ignore during screenshot comparisons. To obtain the coordinates to use here, use the CloudWatch console to draw the boundaries on the screen. For more information, see Editing or deleting a canary * *(string) --* * **BaseCanaryRunId** *(string) --* **[REQUIRED]** Specifies which canary run to use the screenshots from as the baseline for future visual monitoring with this canary. Valid values are "nextrun" to use the screenshots from the next run after this update is made, "lastrun" to use the screenshots from the most recent run before this update was made, or the value of "Id" in the CanaryRun from a run of this a canary in the past 31 days. If you specify the "Id" of a canary run older than 31 days, the operation returns a 400 validation exception error.. * **ArtifactS3Location** (*string*) -- The location in Amazon S3 where Synthetics stores artifacts from the test runs of this canary. Artifacts include the log file, screenshots, and HAR files. The name of the Amazon S3 bucket can't include a period (.). * **ArtifactConfig** (*dict*) -- A structure that contains the configuration for canary artifacts, including the encryption-at-rest settings for artifacts that the canary uploads to Amazon S3. * **S3Encryption** *(dict) --* A structure that contains the configuration of the encryption-at-rest settings for artifacts that the canary uploads to Amazon S3. Artifact encryption functionality is available only for canaries that use Synthetics runtime version syn-nodejs-puppeteer-3.3 or later. For more information, see Encrypting canary artifacts * **EncryptionMode** *(string) --* The encryption method to use for artifacts created by this canary. Specify "SSE_S3" to use server-side encryption (SSE) with an Amazon S3-managed key. Specify "SSE-KMS" to use server-side encryption with a customer-managed KMS key. If you omit this parameter, an Amazon Web Services-managed KMS key is used. * **KmsKeyArn** *(string) --* The ARN of the customer-managed KMS key to use, if you specify "SSE-KMS" for "EncryptionMode" * **ProvisionedResourceCleanup** (*string*) -- Specifies whether to also delete the Lambda functions and layers used by this canary when the canary is deleted. If you omit this parameter, the default of "AUTOMATIC" is used, which means that the Lambda functions and layers will be deleted when the canary is deleted. If the value of this parameter is "OFF", then the value of the "DeleteLambda" parameter of the DeleteCanary operation determines whether the Lambda functions and layers will be deleted. Return type: dict Returns: **Response Syntax** { 'DryRunConfig': { 'DryRunId': 'string', 'LastDryRunExecutionStatus': 'string' } } **Response Structure** * *(dict) --* * **DryRunConfig** *(dict) --* Returns the dry run configurations for a canary. * **DryRunId** *(string) --* The DryRunId associated with an existing canary’s dry run. You can use this DryRunId to retrieve information about the dry run. * **LastDryRunExecutionStatus** *(string) --* Returns the last execution status for a canary's dry run. **Exceptions** * "Synthetics.Client.exceptions.InternalServerException" * "Synthetics.Client.exceptions.ValidationException" * "Synthetics.Client.exceptions.ResourceNotFoundException" * "Synthetics.Client.exceptions.ConflictException" * "Synthetics.Client.exceptions.AccessDeniedException" Synthetics / Client / can_paginate can_paginate ************ Synthetics.Client.can_paginate(operation_name) Check if an operation can be paginated. Parameters: **operation_name** (*string*) -- The operation name. This is the same name as the method name on the client. For example, if the method name is "create_foo", and you'd normally invoke the operation as "client.create_foo(**kwargs)", if the "create_foo" operation can be paginated, you can use the call "client.get_paginator("create_foo")". Returns: "True" if the operation can be paginated, "False" otherwise. Synthetics / Client / start_canary start_canary ************ Synthetics.Client.start_canary(**kwargs) Use this operation to run a canary that has already been created. The frequency of the canary runs is determined by the value of the canary's "Schedule". To see a canary's schedule, use GetCanary. See also: AWS API Documentation **Request Syntax** response = client.start_canary( Name='string' ) Parameters: **Name** (*string*) -- **[REQUIRED]** The name of the canary that you want to run. To find canary names, use DescribeCanaries. Return type: dict Returns: **Response Syntax** {} **Response Structure** * *(dict) --* **Exceptions** * "Synthetics.Client.exceptions.InternalServerException" * "Synthetics.Client.exceptions.ValidationException" * "Synthetics.Client.exceptions.ResourceNotFoundException" * "Synthetics.Client.exceptions.ConflictException" Synthetics / Client / delete_group delete_group ************ Synthetics.Client.delete_group(**kwargs) Deletes a group. The group doesn't need to be empty to be deleted. If there are canaries in the group, they are not deleted when you delete the group. Groups are a global resource that appear in all Regions, but the request to delete a group must be made from its home Region. You can find the home Region of a group within its ARN. See also: AWS API Documentation **Request Syntax** response = client.delete_group( GroupIdentifier='string' ) Parameters: **GroupIdentifier** (*string*) -- **[REQUIRED]** Specifies which group to delete. You can specify the group name, the ARN, or the group ID as the "GroupIdentifier". Return type: dict Returns: **Response Syntax** {} **Response Structure** * *(dict) --* **Exceptions** * "Synthetics.Client.exceptions.InternalServerException" * "Synthetics.Client.exceptions.ValidationException" * "Synthetics.Client.exceptions.ResourceNotFoundException" * "Synthetics.Client.exceptions.ConflictException" Synthetics / Client / list_tags_for_resource list_tags_for_resource ********************** Synthetics.Client.list_tags_for_resource(**kwargs) Displays the tags associated with a canary or group. See also: AWS API Documentation **Request Syntax** response = client.list_tags_for_resource( ResourceArn='string' ) Parameters: **ResourceArn** (*string*) -- **[REQUIRED]** The ARN of the canary or group that you want to view tags for. The ARN format of a canary is >>``<>``<<. The ARN format of a group is "arn:aws:synthetics:Region:account- id:group:group-name" Return type: dict Returns: **Response Syntax** { 'Tags': { 'string': 'string' } } **Response Structure** * *(dict) --* * **Tags** *(dict) --* The list of tag keys and values associated with the resource that you specified. * *(string) --* * *(string) --* **Exceptions** * "Synthetics.Client.exceptions.BadRequestException" * "Synthetics.Client.exceptions.NotFoundException" * "Synthetics.Client.exceptions.TooManyRequestsException" * "Synthetics.Client.exceptions.ConflictException" * "Synthetics.Client.exceptions.InternalFailureException" Synthetics / Client / get_canary_runs get_canary_runs *************** Synthetics.Client.get_canary_runs(**kwargs) Retrieves a list of runs for a specified canary. See also: AWS API Documentation **Request Syntax** response = client.get_canary_runs( Name='string', NextToken='string', MaxResults=123, DryRunId='string', RunType='CANARY_RUN'|'DRY_RUN' ) Parameters: * **Name** (*string*) -- **[REQUIRED]** The name of the canary that you want to see runs for. * **NextToken** (*string*) -- A token that indicates that there is more data available. You can use this token in a subsequent "GetCanaryRuns" operation to retrieve the next set of results. Note: When auto retry is enabled for the canary, the first subsequent retry is suffixed with >>*<<1 indicating its the first retry and the next subsequent try is suffixed with >>*<<2. * **MaxResults** (*integer*) -- Specify this parameter to limit how many runs are returned each time you use the "GetCanaryRuns" operation. If you omit this parameter, the default of 100 is used. * **DryRunId** (*string*) -- The DryRunId associated with an existing canary’s dry run. You can use this DryRunId to retrieve information about the dry run. * **RunType** (*string*) -- * When you provide "RunType=CANARY_RUN" and "dryRunId", you will get an exception * When a value is not provided for "RunType", the default value is "CANARY_RUN" * When "CANARY_RUN" is provided, all canary runs excluding dry runs are returned * When "DRY_RUN" is provided, all dry runs excluding canary runs are returned Return type: dict Returns: **Response Syntax** { 'CanaryRuns': [ { 'Id': 'string', 'ScheduledRunId': 'string', 'RetryAttempt': 123, 'Name': 'string', 'Status': { 'State': 'RUNNING'|'PASSED'|'FAILED', 'StateReason': 'string', 'StateReasonCode': 'CANARY_FAILURE'|'EXECUTION_FAILURE', 'TestResult': 'PASSED'|'FAILED'|'UNKNOWN' }, 'Timeline': { 'Started': datetime(2015, 1, 1), 'Completed': datetime(2015, 1, 1), 'MetricTimestampForRunAndRetries': datetime(2015, 1, 1) }, 'ArtifactS3Location': 'string', 'DryRunConfig': { 'DryRunId': 'string' } }, ], 'NextToken': 'string' } **Response Structure** * *(dict) --* * **CanaryRuns** *(list) --* An array of structures. Each structure contains the details of one of the retrieved canary runs. * *(dict) --* This structure contains the details about one run of one canary. * **Id** *(string) --* A unique ID that identifies this canary run. * **ScheduledRunId** *(string) --* The ID of the scheduled canary run. * **RetryAttempt** *(integer) --* The count in number of the retry attempt. * **Name** *(string) --* The name of the canary. * **Status** *(dict) --* The status of this run. * **State** *(string) --* The current state of the run. * **StateReason** *(string) --* If run of the canary failed, this field contains the reason for the error. * **StateReasonCode** *(string) --* If this value is "CANARY_FAILURE", either the canary script failed or Synthetics ran into a fatal error when running the canary. For example, a canary timeout misconfiguration setting can cause the canary to timeout before Synthetics can evaluate its status. If this value is "EXECUTION_FAILURE", a non-critical failure occurred such as failing to save generated debug artifacts (for example, screenshots or har files). If both types of failures occurred, the "CANARY_FAILURE" takes precedence. To understand the exact error, use the StateReason API. * **TestResult** *(string) --* Specifies the status of canary script for this run. When Synthetics tries to determine the status but fails, the result is marked as "UNKNOWN". For the overall status of canary run, see State. * **Timeline** *(dict) --* A structure that contains the start and end times of this run. * **Started** *(datetime) --* The start time of the run. * **Completed** *(datetime) --* The end time of the run. * **MetricTimestampForRunAndRetries** *(datetime) --* The time at which the metrics will be generated for this run or retries. * **ArtifactS3Location** *(string) --* The location where the canary stored artifacts from the run. Artifacts include the log file, screenshots, and HAR files. * **DryRunConfig** *(dict) --* Returns the dry run configurations for a canary. * **DryRunId** *(string) --* The DryRunId associated with an existing canary’s dry run. You can use this DryRunId to retrieve information about the dry run. * **NextToken** *(string) --* A token that indicates that there is more data available. You can use this token in a subsequent "GetCanaryRuns" operation to retrieve the next set of results. **Exceptions** * "Synthetics.Client.exceptions.InternalServerException" * "Synthetics.Client.exceptions.ValidationException" * "Synthetics.Client.exceptions.ResourceNotFoundException" Synthetics / Client / disassociate_resource disassociate_resource ********************* Synthetics.Client.disassociate_resource(**kwargs) Removes a canary from a group. You must run this operation in the Region where the canary exists. See also: AWS API Documentation **Request Syntax** response = client.disassociate_resource( GroupIdentifier='string', ResourceArn='string' ) Parameters: * **GroupIdentifier** (*string*) -- **[REQUIRED]** Specifies the group. You can specify the group name, the ARN, or the group ID as the "GroupIdentifier". * **ResourceArn** (*string*) -- **[REQUIRED]** The ARN of the canary that you want to remove from the specified group. Return type: dict Returns: **Response Syntax** {} **Response Structure** * *(dict) --* **Exceptions** * "Synthetics.Client.exceptions.InternalServerException" * "Synthetics.Client.exceptions.ValidationException" * "Synthetics.Client.exceptions.ResourceNotFoundException" * "Synthetics.Client.exceptions.ConflictException" Synthetics / Client / untag_resource untag_resource ************** Synthetics.Client.untag_resource(**kwargs) Removes one or more tags from the specified resource. See also: AWS API Documentation **Request Syntax** response = client.untag_resource( ResourceArn='string', TagKeys=[ 'string', ] ) Parameters: * **ResourceArn** (*string*) -- **[REQUIRED]** The ARN of the canary or group that you're removing tags from. The ARN format of a canary is >>``<>``<<. The ARN format of a group is "arn:aws:synthetics:Region :account-id:group:group-name" * **TagKeys** (*list*) -- **[REQUIRED]** The list of tag keys to remove from the resource. * *(string) --* Return type: dict Returns: **Response Syntax** {} **Response Structure** * *(dict) --* **Exceptions** * "Synthetics.Client.exceptions.BadRequestException" * "Synthetics.Client.exceptions.NotFoundException" * "Synthetics.Client.exceptions.TooManyRequestsException" * "Synthetics.Client.exceptions.ConflictException" * "Synthetics.Client.exceptions.InternalFailureException" Synthetics / Client / get_waiter get_waiter ********** Synthetics.Client.get_waiter(waiter_name) Returns an object that can wait for some condition. Parameters: **waiter_name** (*str*) -- The name of the waiter to get. See the waiters section of the service docs for a list of available waiters. Returns: The specified waiter object. Return type: "botocore.waiter.Waiter" Synthetics / Client / associate_resource associate_resource ****************** Synthetics.Client.associate_resource(**kwargs) Associates a canary with a group. Using groups can help you with managing and automating your canaries, and you can also view aggregated run results and statistics for all canaries in a group. You must run this operation in the Region where the canary exists. See also: AWS API Documentation **Request Syntax** response = client.associate_resource( GroupIdentifier='string', ResourceArn='string' ) Parameters: * **GroupIdentifier** (*string*) -- **[REQUIRED]** Specifies the group. You can specify the group name, the ARN, or the group ID as the "GroupIdentifier". * **ResourceArn** (*string*) -- **[REQUIRED]** The ARN of the canary that you want to associate with the specified group. Return type: dict Returns: **Response Syntax** {} **Response Structure** * *(dict) --* **Exceptions** * "Synthetics.Client.exceptions.InternalServerException" * "Synthetics.Client.exceptions.ValidationException" * "Synthetics.Client.exceptions.ResourceNotFoundException" * "Synthetics.Client.exceptions.ConflictException" * "Synthetics.Client.exceptions.ServiceQuotaExceededException" Synthetics / Client / get_canary get_canary ********** Synthetics.Client.get_canary(**kwargs) Retrieves complete information about one canary. You must specify the name of the canary that you want. To get a list of canaries and their names, use DescribeCanaries. See also: AWS API Documentation **Request Syntax** response = client.get_canary( Name='string', DryRunId='string' ) Parameters: * **Name** (*string*) -- **[REQUIRED]** The name of the canary that you want details for. * **DryRunId** (*string*) -- The DryRunId associated with an existing canary’s dry run. You can use this DryRunId to retrieve information about the dry run. Return type: dict Returns: **Response Syntax** { 'Canary': { 'Id': 'string', 'Name': 'string', 'Code': { 'SourceLocationArn': 'string', 'Handler': 'string', 'Dependencies': [ { 'Type': 'LambdaLayer', 'Reference': 'string' }, ] }, 'ExecutionRoleArn': 'string', 'Schedule': { 'Expression': 'string', 'DurationInSeconds': 123, 'RetryConfig': { 'MaxRetries': 123 } }, 'RunConfig': { 'TimeoutInSeconds': 123, 'MemoryInMB': 123, 'ActiveTracing': True|False, 'EphemeralStorage': 123 }, 'SuccessRetentionPeriodInDays': 123, 'FailureRetentionPeriodInDays': 123, 'Status': { 'State': 'CREATING'|'READY'|'STARTING'|'RUNNING'|'UPDATING'|'STOPPING'|'STOPPED'|'ERROR'|'DELETING', 'StateReason': 'string', 'StateReasonCode': 'INVALID_PERMISSIONS'|'CREATE_PENDING'|'CREATE_IN_PROGRESS'|'CREATE_FAILED'|'UPDATE_PENDING'|'UPDATE_IN_PROGRESS'|'UPDATE_COMPLETE'|'ROLLBACK_COMPLETE'|'ROLLBACK_FAILED'|'DELETE_IN_PROGRESS'|'DELETE_FAILED'|'SYNC_DELETE_IN_PROGRESS' }, 'Timeline': { 'Created': datetime(2015, 1, 1), 'LastModified': datetime(2015, 1, 1), 'LastStarted': datetime(2015, 1, 1), 'LastStopped': datetime(2015, 1, 1) }, 'ArtifactS3Location': 'string', 'EngineArn': 'string', 'RuntimeVersion': 'string', 'VpcConfig': { 'VpcId': 'string', 'SubnetIds': [ 'string', ], 'SecurityGroupIds': [ 'string', ], 'Ipv6AllowedForDualStack': True|False }, 'VisualReference': { 'BaseScreenshots': [ { 'ScreenshotName': 'string', 'IgnoreCoordinates': [ 'string', ] }, ], 'BaseCanaryRunId': 'string' }, 'ProvisionedResourceCleanup': 'AUTOMATIC'|'OFF', 'Tags': { 'string': 'string' }, 'ArtifactConfig': { 'S3Encryption': { 'EncryptionMode': 'SSE_S3'|'SSE_KMS', 'KmsKeyArn': 'string' } }, 'DryRunConfig': { 'DryRunId': 'string', 'LastDryRunExecutionStatus': 'string' } } } **Response Structure** * *(dict) --* * **Canary** *(dict) --* A structure that contains the full information about the canary. * **Id** *(string) --* The unique ID of this canary. * **Name** *(string) --* The name of the canary. * **Code** *(dict) --* This structure contains information about the canary's Lambda handler and where its code is stored by CloudWatch Synthetics. * **SourceLocationArn** *(string) --* The ARN of the Lambda layer where Synthetics stores the canary script code. * **Handler** *(string) --* The entry point to use for the source code when running the canary. * **Dependencies** *(list) --* A list of dependencies that are used for running this canary. The dependencies are specified as a key-value pair, where the key is the type of dependency and the value is the dependency reference. * *(dict) --* A structure that contains information about a dependency for a canary. * **Type** *(string) --* The type of dependency. Valid value is "LambdaLayer". * **Reference** *(string) --* The dependency reference. For Lambda layers, this is the ARN of the Lambda layer. For more information about Lambda ARN format, see Lambda. * **ExecutionRoleArn** *(string) --* The ARN of the IAM role used to run the canary. This role must include "lambda.amazonaws.com" as a principal in the trust policy. * **Schedule** *(dict) --* A structure that contains information about how often the canary is to run, and when these runs are to stop. * **Expression** *(string) --* A "rate" expression or a "cron" expression that defines how often the canary is to run. For a rate expression, The syntax is "rate(number unit)". *unit* can be "minute", "minutes", or "hour". For example, "rate(1 minute)" runs the canary once a minute, "rate(10 minutes)" runs it once every 10 minutes, and "rate(1 hour)" runs it once every hour. You can specify a frequency between "rate(1 minute)" and "rate(1 hour)". Specifying "rate(0 minute)" or "rate(0 hour)" is a special value that causes the canary to run only once when it is started. Use "cron(expression)" to specify a cron expression. For information about the syntax for cron expressions, see Scheduling canary runs using cron. * **DurationInSeconds** *(integer) --* How long, in seconds, for the canary to continue making regular runs after it was created. The runs are performed according to the schedule in the "Expression" value. * **RetryConfig** *(dict) --* A structure that contains the retry configuration for a canary * **MaxRetries** *(integer) --* The maximum number of retries. The value must be less than or equal to 2. * **RunConfig** *(dict) --* A structure that contains information about a canary run. * **TimeoutInSeconds** *(integer) --* How long the canary is allowed to run before it must stop. * **MemoryInMB** *(integer) --* The maximum amount of memory available to the canary while it is running, in MB. This value must be a multiple of 64. * **ActiveTracing** *(boolean) --* Displays whether this canary run used active X-Ray tracing. * **EphemeralStorage** *(integer) --* Specifies the amount of ephemeral storage (in MB) to allocate for the canary run during execution. This temporary storage is used for storing canary run artifacts (which are uploaded to an Amazon S3 bucket at the end of the run), and any canary browser operations. This temporary storage is cleared after the run is completed. Default storage value is 1024 MB. * **SuccessRetentionPeriodInDays** *(integer) --* The number of days to retain data about successful runs of this canary. This setting affects the range of information returned by GetCanaryRuns, as well as the range of information displayed in the Synthetics console. * **FailureRetentionPeriodInDays** *(integer) --* The number of days to retain data about failed runs of this canary. This setting affects the range of information returned by GetCanaryRuns, as well as the range of information displayed in the Synthetics console. * **Status** *(dict) --* A structure that contains information about the canary's status. * **State** *(string) --* The current state of the canary. * **StateReason** *(string) --* If the canary creation or update failed, this field provides details on the failure. * **StateReasonCode** *(string) --* If the canary creation or update failed, this field displays the reason code. * **Timeline** *(dict) --* A structure that contains information about when the canary was created, modified, and most recently run. * **Created** *(datetime) --* The date and time the canary was created. * **LastModified** *(datetime) --* The date and time the canary was most recently modified. * **LastStarted** *(datetime) --* The date and time that the canary's most recent run started. * **LastStopped** *(datetime) --* The date and time that the canary's most recent run ended. * **ArtifactS3Location** *(string) --* The location in Amazon S3 where Synthetics stores artifacts from the runs of this canary. Artifacts include the log file, screenshots, and HAR files. * **EngineArn** *(string) --* The ARN of the Lambda function that is used as your canary's engine. For more information about Lambda ARN format, see Resources and Conditions for Lambda Actions. * **RuntimeVersion** *(string) --* Specifies the runtime version to use for the canary. For more information about runtime versions, see Canary Runtime Versions. * **VpcConfig** *(dict) --* If this canary is to test an endpoint in a VPC, this structure contains information about the subnets and security groups of the VPC endpoint. For more information, see Running a Canary in a VPC. * **VpcId** *(string) --* The IDs of the VPC where this canary is to run. * **SubnetIds** *(list) --* The IDs of the subnets where this canary is to run. * *(string) --* * **SecurityGroupIds** *(list) --* The IDs of the security groups for this canary. * *(string) --* * **Ipv6AllowedForDualStack** *(boolean) --* Indicates whether this canary allows outbound IPv6 traffic if it is connected to dual-stack subnets. * **VisualReference** *(dict) --* If this canary performs visual monitoring by comparing screenshots, this structure contains the ID of the canary run to use as the baseline for screenshots, and the coordinates of any parts of the screen to ignore during the visual monitoring comparison. * **BaseScreenshots** *(list) --* An array of screenshots that are used as the baseline for comparisons during visual monitoring. * *(dict) --* A structure representing a screenshot that is used as a baseline during visual monitoring comparisons made by the canary. * **ScreenshotName** *(string) --* The name of the screenshot. This is generated the first time the canary is run after the "UpdateCanary" operation that specified for this canary to perform visual monitoring. * **IgnoreCoordinates** *(list) --* Coordinates that define the part of a screen to ignore during screenshot comparisons. To obtain the coordinates to use here, use the CloudWatch console to draw the boundaries on the screen. For more information, see Editing or deleting a canary * *(string) --* * **BaseCanaryRunId** *(string) --* The ID of the canary run that produced the baseline screenshots that are used for visual monitoring comparisons by this canary. * **ProvisionedResourceCleanup** *(string) --* Specifies whether to also delete the Lambda functions and layers used by this canary when the canary is deleted. If it is "AUTOMATIC", the Lambda functions and layers will be deleted when the canary is deleted. If the value of this parameter is "OFF", then the value of the "DeleteLambda" parameter of the DeleteCanary operation determines whether the Lambda functions and layers will be deleted. * **Tags** *(dict) --* The list of key-value pairs that are associated with the canary. * *(string) --* * *(string) --* * **ArtifactConfig** *(dict) --* A structure that contains the configuration for canary artifacts, including the encryption-at-rest settings for artifacts that the canary uploads to Amazon S3. * **S3Encryption** *(dict) --* A structure that contains the configuration of encryption settings for canary artifacts that are stored in Amazon S3. * **EncryptionMode** *(string) --* The encryption method to use for artifacts created by this canary. Specify "SSE_S3" to use server-side encryption (SSE) with an Amazon S3-managed key. Specify "SSE-KMS" to use server-side encryption with a customer-managed KMS key. If you omit this parameter, an Amazon Web Services- managed KMS key is used. * **KmsKeyArn** *(string) --* The ARN of the customer-managed KMS key to use, if you specify "SSE-KMS" for "EncryptionMode" * **DryRunConfig** *(dict) --* Returns the dry run configurations for a canary. * **DryRunId** *(string) --* The DryRunId associated with an existing canary’s dry run. You can use this DryRunId to retrieve information about the dry run. * **LastDryRunExecutionStatus** *(string) --* Returns the last execution status for a canary's dry run. **Exceptions** * "Synthetics.Client.exceptions.InternalServerException" * "Synthetics.Client.exceptions.ValidationException" Synthetics / Client / stop_canary stop_canary *********** Synthetics.Client.stop_canary(**kwargs) Stops the canary to prevent all future runs. If the canary is currently running,the run that is in progress completes on its own, publishes metrics, and uploads artifacts, but it is not recorded in Synthetics as a completed run. You can use "StartCanary" to start it running again with the canary’s current schedule at any point in the future. See also: AWS API Documentation **Request Syntax** response = client.stop_canary( Name='string' ) Parameters: **Name** (*string*) -- **[REQUIRED]** The name of the canary that you want to stop. To find the names of your canaries, use ListCanaries. Return type: dict Returns: **Response Syntax** {} **Response Structure** * *(dict) --* **Exceptions** * "Synthetics.Client.exceptions.InternalServerException" * "Synthetics.Client.exceptions.ValidationException" * "Synthetics.Client.exceptions.ResourceNotFoundException" * "Synthetics.Client.exceptions.ConflictException" Synthetics / Client / list_group_resources list_group_resources ******************** Synthetics.Client.list_group_resources(**kwargs) This operation returns a list of the ARNs of the canaries that are associated with the specified group. See also: AWS API Documentation **Request Syntax** response = client.list_group_resources( NextToken='string', MaxResults=123, GroupIdentifier='string' ) Parameters: * **NextToken** (*string*) -- A token that indicates that there is more data available. You can use this token in a subsequent operation to retrieve the next set of results. * **MaxResults** (*integer*) -- Specify this parameter to limit how many canary ARNs are returned each time you use the "ListGroupResources" operation. If you omit this parameter, the default of 20 is used. * **GroupIdentifier** (*string*) -- **[REQUIRED]** Specifies the group to return information for. You can specify the group name, the ARN, or the group ID as the "GroupIdentifier". Return type: dict Returns: **Response Syntax** { 'Resources': [ 'string', ], 'NextToken': 'string' } **Response Structure** * *(dict) --* * **Resources** *(list) --* An array of ARNs. These ARNs are for the canaries that are associated with the group. * *(string) --* * **NextToken** *(string) --* A token that indicates that there is more data available. You can use this token in a subsequent "ListGroupResources" operation to retrieve the next set of results. **Exceptions** * "Synthetics.Client.exceptions.InternalServerException" * "Synthetics.Client.exceptions.ValidationException" * "Synthetics.Client.exceptions.ResourceNotFoundException" * "Synthetics.Client.exceptions.ConflictException" Synthetics / Client / get_group get_group ********* Synthetics.Client.get_group(**kwargs) Returns information about one group. Groups are a global resource, so you can use this operation from any Region. See also: AWS API Documentation **Request Syntax** response = client.get_group( GroupIdentifier='string' ) Parameters: **GroupIdentifier** (*string*) -- **[REQUIRED]** Specifies the group to return information for. You can specify the group name, the ARN, or the group ID as the "GroupIdentifier". Return type: dict Returns: **Response Syntax** { 'Group': { 'Id': 'string', 'Name': 'string', 'Arn': 'string', 'Tags': { 'string': 'string' }, 'CreatedTime': datetime(2015, 1, 1), 'LastModifiedTime': datetime(2015, 1, 1) } } **Response Structure** * *(dict) --* * **Group** *(dict) --* A structure that contains information about the group. * **Id** *(string) --* The unique ID of the group. * **Name** *(string) --* The name of the group. * **Arn** *(string) --* The ARN of the group. * **Tags** *(dict) --* The list of key-value pairs that are associated with the canary. * *(string) --* * *(string) --* * **CreatedTime** *(datetime) --* The date and time that the group was created. * **LastModifiedTime** *(datetime) --* The date and time that the group was most recently updated. **Exceptions** * "Synthetics.Client.exceptions.InternalServerException" * "Synthetics.Client.exceptions.ValidationException" * "Synthetics.Client.exceptions.ResourceNotFoundException" * "Synthetics.Client.exceptions.ConflictException" Synthetics / Client / create_group create_group ************ Synthetics.Client.create_group(**kwargs) Creates a group which you can use to associate canaries with each other, including cross-Region canaries. Using groups can help you with managing and automating your canaries, and you can also view aggregated run results and statistics for all canaries in a group. Groups are global resources. When you create a group, it is replicated across Amazon Web Services Regions, and you can view it and add canaries to it from any Region. Although the group ARN format reflects the Region name where it was created, a group is not constrained to any Region. This means that you can put canaries from multiple Regions into the same group, and then use that group to view and manage all of those canaries in a single view. Groups are supported in all Regions except the Regions that are disabled by default. For more information about these Regions, see Enabling a Region. Each group can contain as many as 10 canaries. You can have as many as 20 groups in your account. Any single canary can be a member of up to 10 groups. See also: AWS API Documentation **Request Syntax** response = client.create_group( Name='string', Tags={ 'string': 'string' } ) Parameters: * **Name** (*string*) -- **[REQUIRED]** The name for the group. It can include any Unicode characters. The names for all groups in your account, across all Regions, must be unique. * **Tags** (*dict*) -- A list of key-value pairs to associate with the group. You can associate as many as 50 tags with a group. Tags can help you organize and categorize your resources. You can also use them to scope user permissions, by granting a user permission to access or change only the resources that have certain tag values. * *(string) --* * *(string) --* Return type: dict Returns: **Response Syntax** { 'Group': { 'Id': 'string', 'Name': 'string', 'Arn': 'string', 'Tags': { 'string': 'string' }, 'CreatedTime': datetime(2015, 1, 1), 'LastModifiedTime': datetime(2015, 1, 1) } } **Response Structure** * *(dict) --* * **Group** *(dict) --* A structure that contains information about the group that was just created. * **Id** *(string) --* The unique ID of the group. * **Name** *(string) --* The name of the group. * **Arn** *(string) --* The ARN of the group. * **Tags** *(dict) --* The list of key-value pairs that are associated with the canary. * *(string) --* * *(string) --* * **CreatedTime** *(datetime) --* The date and time that the group was created. * **LastModifiedTime** *(datetime) --* The date and time that the group was most recently updated. **Exceptions** * "Synthetics.Client.exceptions.InternalServerException" * "Synthetics.Client.exceptions.ValidationException" * "Synthetics.Client.exceptions.ConflictException" * "Synthetics.Client.exceptions.ServiceQuotaExceededException" Synthetics / Client / close close ***** Synthetics.Client.close() Closes underlying endpoint connections. Synthetics / Client / list_groups list_groups *********** Synthetics.Client.list_groups(**kwargs) Returns a list of all groups in the account, displaying their names, unique IDs, and ARNs. The groups from all Regions are returned. See also: AWS API Documentation **Request Syntax** response = client.list_groups( NextToken='string', MaxResults=123 ) Parameters: * **NextToken** (*string*) -- A token that indicates that there is more data available. You can use this token in a subsequent operation to retrieve the next set of results. * **MaxResults** (*integer*) -- Specify this parameter to limit how many groups are returned each time you use the "ListGroups" operation. If you omit this parameter, the default of 20 is used. Return type: dict Returns: **Response Syntax** { 'Groups': [ { 'Id': 'string', 'Name': 'string', 'Arn': 'string' }, ], 'NextToken': 'string' } **Response Structure** * *(dict) --* * **Groups** *(list) --* An array of structures that each contain information about one group. * *(dict) --* A structure containing some information about a group. * **Id** *(string) --* The unique ID of the group. * **Name** *(string) --* The name of the group. * **Arn** *(string) --* The ARN of the group. * **NextToken** *(string) --* A token that indicates that there is more data available. You can use this token in a subsequent "ListGroups" operation to retrieve the next set of results. **Exceptions** * "Synthetics.Client.exceptions.InternalServerException" * "Synthetics.Client.exceptions.ValidationException" Synthetics / Client / list_associated_groups list_associated_groups ********************** Synthetics.Client.list_associated_groups(**kwargs) Returns a list of the groups that the specified canary is associated with. The canary that you specify must be in the current Region. See also: AWS API Documentation **Request Syntax** response = client.list_associated_groups( NextToken='string', MaxResults=123, ResourceArn='string' ) Parameters: * **NextToken** (*string*) -- A token that indicates that there is more data available. You can use this token in a subsequent operation to retrieve the next set of results. * **MaxResults** (*integer*) -- Specify this parameter to limit how many groups are returned each time you use the "ListAssociatedGroups" operation. If you omit this parameter, the default of 20 is used. * **ResourceArn** (*string*) -- **[REQUIRED]** The ARN of the canary that you want to view groups for. Return type: dict Returns: **Response Syntax** { 'Groups': [ { 'Id': 'string', 'Name': 'string', 'Arn': 'string' }, ], 'NextToken': 'string' } **Response Structure** * *(dict) --* * **Groups** *(list) --* An array of structures that contain information about the groups that this canary is associated with. * *(dict) --* A structure containing some information about a group. * **Id** *(string) --* The unique ID of the group. * **Name** *(string) --* The name of the group. * **Arn** *(string) --* The ARN of the group. * **NextToken** *(string) --* A token that indicates that there is more data available. You can use this token in a subsequent "ListAssociatedGroups" operation to retrieve the next set of results. **Exceptions** * "Synthetics.Client.exceptions.InternalServerException" * "Synthetics.Client.exceptions.ValidationException" * "Synthetics.Client.exceptions.ResourceNotFoundException" Synthetics / Client / delete_canary delete_canary ************* Synthetics.Client.delete_canary(**kwargs) Permanently deletes the specified canary. If the canary's "ProvisionedResourceCleanup" field is set to "AUTOMATIC" or you specify "DeleteLambda" in this operation as "true", CloudWatch Synthetics also deletes the Lambda functions and layers that are used by the canary. Other resources used and created by the canary are not automatically deleted. After you delete a canary, you should also delete the following: * The CloudWatch alarms created for this canary. These alarms have a name of "Synthetics-Alarm-first-198-characters-of-canary-name- canaryId-alarm number" * Amazon S3 objects and buckets, such as the canary's artifact location. * IAM roles created for the canary. If they were created in the console, these roles have the name "role/service-role /CloudWatchSyntheticsRole-First-21-Characters-of-CanaryName" * CloudWatch Logs log groups created for the canary. These logs groups have the name "/aws/lambda/cwsyn-First-21-Characters-of- CanaryName" Before you delete a canary, you might want to use "GetCanary" to display the information about this canary. Make note of the information returned by this operation so that you can delete these resources after you delete the canary. See also: AWS API Documentation **Request Syntax** response = client.delete_canary( Name='string', DeleteLambda=True|False ) Parameters: * **Name** (*string*) -- **[REQUIRED]** The name of the canary that you want to delete. To find the names of your canaries, use DescribeCanaries. * **DeleteLambda** (*boolean*) -- Specifies whether to also delete the Lambda functions and layers used by this canary. The default is "false". Your setting for this parameter is used only if the canary doesn't have "AUTOMATIC" for its "ProvisionedResourceCleanup" field. If that field is set to "AUTOMATIC", then the Lambda functions and layers will be deleted when this canary is deleted. Type: Boolean Return type: dict Returns: **Response Syntax** {} **Response Structure** * *(dict) --* **Exceptions** * "Synthetics.Client.exceptions.InternalServerException" * "Synthetics.Client.exceptions.ValidationException" * "Synthetics.Client.exceptions.ResourceNotFoundException" * "Synthetics.Client.exceptions.ConflictException" Synthetics / Client / create_canary create_canary ************* Synthetics.Client.create_canary(**kwargs) Creates a canary. Canaries are scripts that monitor your endpoints and APIs from the outside-in. Canaries help you check the availability and latency of your web services and troubleshoot anomalies by investigating load time data, screenshots of the UI, logs, and metrics. You can set up a canary to run continuously or just once. Do not use "CreateCanary" to modify an existing canary. Use UpdateCanary instead. To create canaries, you must have the "CloudWatchSyntheticsFullAccess" policy. If you are creating a new IAM role for the canary, you also need the "iam:CreateRole", "iam:CreatePolicy" and "iam:AttachRolePolicy" permissions. For more information, see Necessary Roles and Permissions. Do not include secrets or proprietary information in your canary names. The canary name makes up part of the Amazon Resource Name (ARN) for the canary, and the ARN is included in outbound calls over the internet. For more information, see Security Considerations for Synthetics Canaries. See also: AWS API Documentation **Request Syntax** response = client.create_canary( Name='string', Code={ 'S3Bucket': 'string', 'S3Key': 'string', 'S3Version': 'string', 'ZipFile': b'bytes', 'Handler': 'string', 'Dependencies': [ { 'Type': 'LambdaLayer', 'Reference': 'string' }, ] }, ArtifactS3Location='string', ExecutionRoleArn='string', Schedule={ 'Expression': 'string', 'DurationInSeconds': 123, 'RetryConfig': { 'MaxRetries': 123 } }, RunConfig={ 'TimeoutInSeconds': 123, 'MemoryInMB': 123, 'ActiveTracing': True|False, 'EnvironmentVariables': { 'string': 'string' }, 'EphemeralStorage': 123 }, SuccessRetentionPeriodInDays=123, FailureRetentionPeriodInDays=123, RuntimeVersion='string', VpcConfig={ 'SubnetIds': [ 'string', ], 'SecurityGroupIds': [ 'string', ], 'Ipv6AllowedForDualStack': True|False }, ResourcesToReplicateTags=[ 'lambda-function', ], ProvisionedResourceCleanup='AUTOMATIC'|'OFF', Tags={ 'string': 'string' }, ArtifactConfig={ 'S3Encryption': { 'EncryptionMode': 'SSE_S3'|'SSE_KMS', 'KmsKeyArn': 'string' } } ) Parameters: * **Name** (*string*) -- **[REQUIRED]** The name for this canary. Be sure to give it a descriptive name that distinguishes it from other canaries in your account. Do not include secrets or proprietary information in your canary names. The canary name makes up part of the canary ARN, and the ARN is included in outbound calls over the internet. For more information, see Security Considerations for Synthetics Canaries. * **Code** (*dict*) -- **[REQUIRED]** A structure that includes the entry point from which the canary should start running your script. If the script is stored in an Amazon S3 bucket, the bucket name, key, and version are also included. * **S3Bucket** *(string) --* If your canary script is located in Amazon S3, specify the bucket name here. Do not include "s3://" as the start of the bucket name. * **S3Key** *(string) --* The Amazon S3 key of your script. For more information, see Working with Amazon S3 Objects. * **S3Version** *(string) --* The Amazon S3 version ID of your script. * **ZipFile** *(bytes) --* If you input your canary script directly into the canary instead of referring to an Amazon S3 location, the value of this parameter is the base64-encoded contents of the .zip file that contains the script. It must be smaller than 225 Kb. For large canary scripts, we recommend that you use an Amazon S3 location instead of inputting it directly with this parameter. * **Handler** *(string) --* **[REQUIRED]** The entry point to use for the source code when running the canary. For canaries that use the "syn-python-selenium-1.0" runtime or a "syn-nodejs.puppeteer" runtime earlier than "syn-nodejs.puppeteer-3.4", the handler must be specified as "fileName.handler". For "syn-python-selenium-1.1", "syn- nodejs.puppeteer-3.4", and later runtimes, the handler can be specified as >>``<>``<<, or you can specify a folder where canary scripts reside as >>``<>``<<. * **Dependencies** *(list) --* A list of dependencies that should be used for running this canary. Specify the dependencies as a key-value pair, where the key is the type of dependency and the value is the dependency reference. * *(dict) --* A structure that contains information about a dependency for a canary. * **Type** *(string) --* The type of dependency. Valid value is "LambdaLayer". * **Reference** *(string) --* **[REQUIRED]** The dependency reference. For Lambda layers, this is the ARN of the Lambda layer. For more information about Lambda ARN format, see Lambda. * **ArtifactS3Location** (*string*) -- **[REQUIRED]** The location in Amazon S3 where Synthetics stores artifacts from the test runs of this canary. Artifacts include the log file, screenshots, and HAR files. The name of the Amazon S3 bucket can't include a period (.). * **ExecutionRoleArn** (*string*) -- **[REQUIRED]** The ARN of the IAM role to be used to run the canary. This role must already exist, and must include "lambda.amazonaws.com" as a principal in the trust policy. The role must also have the following permissions: * "s3:PutObject" * "s3:GetBucketLocation" * "s3:ListAllMyBuckets" * "cloudwatch:PutMetricData" * "logs:CreateLogGroup" * "logs:CreateLogStream" * "logs:PutLogEvents" * **Schedule** (*dict*) -- **[REQUIRED]** A structure that contains information about how often the canary is to run and when these test runs are to stop. * **Expression** *(string) --* **[REQUIRED]** A "rate" expression or a "cron" expression that defines how often the canary is to run. For a rate expression, The syntax is "rate(number unit)". *unit* can be "minute", "minutes", or "hour". For example, "rate(1 minute)" runs the canary once a minute, "rate(10 minutes)" runs it once every 10 minutes, and "rate(1 hour)" runs it once every hour. You can specify a frequency between "rate(1 minute)" and "rate(1 hour)". Specifying "rate(0 minute)" or "rate(0 hour)" is a special value that causes the canary to run only once when it is started. Use "cron(expression)" to specify a cron expression. You can't schedule a canary to wait for more than a year before running. For information about the syntax for cron expressions, see Scheduling canary runs using cron. * **DurationInSeconds** *(integer) --* How long, in seconds, for the canary to continue making regular runs according to the schedule in the "Expression" value. If you specify 0, the canary continues making runs until you stop it. If you omit this field, the default of 0 is used. * **RetryConfig** *(dict) --* A structure that contains the retry configuration for a canary * **MaxRetries** *(integer) --* **[REQUIRED]** The maximum number of retries. The value must be less than or equal to 2. * **RunConfig** (*dict*) -- A structure that contains the configuration for individual canary runs, such as timeout value and environment variables. Warning: Environment variable keys and values are encrypted at rest using Amazon Web Services owned KMS keys. However, the environment variables are not encrypted on the client side. Do not store sensitive information in them. * **TimeoutInSeconds** *(integer) --* 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. * **MemoryInMB** *(integer) --* The maximum amount of memory available to the canary while it is running, in MB. This value must be a multiple of 64. * **ActiveTracing** *(boolean) --* 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. * **EnvironmentVariables** *(dict) --* 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. Warning: Environment variable keys and values are encrypted at rest using Amazon Web Services owned KMS keys. However, the environment variables are not encrypted on the client side. Do not store sensitive information in them. * *(string) --* * *(string) --* * **EphemeralStorage** *(integer) --* Specifies the amount of ephemeral storage (in MB) to allocate for the canary run during execution. This temporary storage is used for storing canary run artifacts (which are uploaded to an Amazon S3 bucket at the end of the run), and any canary browser operations. This temporary storage is cleared after the run is completed. Default storage value is 1024 MB. * **SuccessRetentionPeriodInDays** (*integer*) -- The number of days to retain data about successful runs of this canary. If you omit this field, the default of 31 days is used. The valid range is 1 to 455 days. This setting affects the range of information returned by GetCanaryRuns, as well as the range of information displayed in the Synthetics console. * **FailureRetentionPeriodInDays** (*integer*) -- The number of days to retain data about failed runs of this canary. If you omit this field, the default of 31 days is used. The valid range is 1 to 455 days. This setting affects the range of information returned by GetCanaryRuns, as well as the range of information displayed in the Synthetics console. * **RuntimeVersion** (*string*) -- **[REQUIRED]** Specifies the runtime version to use for the canary. For a list of valid runtime versions and more information about runtime versions, see Canary Runtime Versions. * **VpcConfig** (*dict*) -- If this canary is to test an endpoint in a VPC, this structure contains information about the subnet and security groups of the VPC endpoint. For more information, see Running a Canary in a VPC. * **SubnetIds** *(list) --* The IDs of the subnets where this canary is to run. * *(string) --* * **SecurityGroupIds** *(list) --* The IDs of the security groups for this canary. * *(string) --* * **Ipv6AllowedForDualStack** *(boolean) --* Set this to "true" to allow outbound IPv6 traffic on VPC canaries that are connected to dual-stack subnets. The default is "false" * **ResourcesToReplicateTags** (*list*) -- To have the tags that you apply to this canary also be applied to the Lambda function that the canary uses, specify this parameter with the value "lambda-function". If you specify this parameter and don't specify any tags in the "Tags" parameter, the canary creation fails. * *(string) --* * **ProvisionedResourceCleanup** (*string*) -- Specifies whether to also delete the Lambda functions and layers used by this canary when the canary is deleted. If you omit this parameter, the default of "AUTOMATIC" is used, which means that the Lambda functions and layers will be deleted when the canary is deleted. If the value of this parameter is "OFF", then the value of the "DeleteLambda" parameter of the DeleteCanary operation determines whether the Lambda functions and layers will be deleted. * **Tags** (*dict*) -- A list of key-value pairs to associate with the canary. You can associate as many as 50 tags with a canary. Tags can help you organize and categorize your resources. You can also use them to scope user permissions, by granting a user permission to access or change only the resources that have certain tag values. To have the tags that you apply to this canary also be applied to the Lambda function that the canary uses, specify this parameter with the value "lambda-function". * *(string) --* * *(string) --* * **ArtifactConfig** (*dict*) -- A structure that contains the configuration for canary artifacts, including the encryption-at-rest settings for artifacts that the canary uploads to Amazon S3. * **S3Encryption** *(dict) --* A structure that contains the configuration of the encryption-at-rest settings for artifacts that the canary uploads to Amazon S3. Artifact encryption functionality is available only for canaries that use Synthetics runtime version syn-nodejs-puppeteer-3.3 or later. For more information, see Encrypting canary artifacts * **EncryptionMode** *(string) --* The encryption method to use for artifacts created by this canary. Specify "SSE_S3" to use server-side encryption (SSE) with an Amazon S3-managed key. Specify "SSE-KMS" to use server-side encryption with a customer-managed KMS key. If you omit this parameter, an Amazon Web Services-managed KMS key is used. * **KmsKeyArn** *(string) --* The ARN of the customer-managed KMS key to use, if you specify "SSE-KMS" for "EncryptionMode" Return type: dict Returns: **Response Syntax** { 'Canary': { 'Id': 'string', 'Name': 'string', 'Code': { 'SourceLocationArn': 'string', 'Handler': 'string', 'Dependencies': [ { 'Type': 'LambdaLayer', 'Reference': 'string' }, ] }, 'ExecutionRoleArn': 'string', 'Schedule': { 'Expression': 'string', 'DurationInSeconds': 123, 'RetryConfig': { 'MaxRetries': 123 } }, 'RunConfig': { 'TimeoutInSeconds': 123, 'MemoryInMB': 123, 'ActiveTracing': True|False, 'EphemeralStorage': 123 }, 'SuccessRetentionPeriodInDays': 123, 'FailureRetentionPeriodInDays': 123, 'Status': { 'State': 'CREATING'|'READY'|'STARTING'|'RUNNING'|'UPDATING'|'STOPPING'|'STOPPED'|'ERROR'|'DELETING', 'StateReason': 'string', 'StateReasonCode': 'INVALID_PERMISSIONS'|'CREATE_PENDING'|'CREATE_IN_PROGRESS'|'CREATE_FAILED'|'UPDATE_PENDING'|'UPDATE_IN_PROGRESS'|'UPDATE_COMPLETE'|'ROLLBACK_COMPLETE'|'ROLLBACK_FAILED'|'DELETE_IN_PROGRESS'|'DELETE_FAILED'|'SYNC_DELETE_IN_PROGRESS' }, 'Timeline': { 'Created': datetime(2015, 1, 1), 'LastModified': datetime(2015, 1, 1), 'LastStarted': datetime(2015, 1, 1), 'LastStopped': datetime(2015, 1, 1) }, 'ArtifactS3Location': 'string', 'EngineArn': 'string', 'RuntimeVersion': 'string', 'VpcConfig': { 'VpcId': 'string', 'SubnetIds': [ 'string', ], 'SecurityGroupIds': [ 'string', ], 'Ipv6AllowedForDualStack': True|False }, 'VisualReference': { 'BaseScreenshots': [ { 'ScreenshotName': 'string', 'IgnoreCoordinates': [ 'string', ] }, ], 'BaseCanaryRunId': 'string' }, 'ProvisionedResourceCleanup': 'AUTOMATIC'|'OFF', 'Tags': { 'string': 'string' }, 'ArtifactConfig': { 'S3Encryption': { 'EncryptionMode': 'SSE_S3'|'SSE_KMS', 'KmsKeyArn': 'string' } }, 'DryRunConfig': { 'DryRunId': 'string', 'LastDryRunExecutionStatus': 'string' } } } **Response Structure** * *(dict) --* * **Canary** *(dict) --* The full details about the canary you have created. * **Id** *(string) --* The unique ID of this canary. * **Name** *(string) --* The name of the canary. * **Code** *(dict) --* This structure contains information about the canary's Lambda handler and where its code is stored by CloudWatch Synthetics. * **SourceLocationArn** *(string) --* The ARN of the Lambda layer where Synthetics stores the canary script code. * **Handler** *(string) --* The entry point to use for the source code when running the canary. * **Dependencies** *(list) --* A list of dependencies that are used for running this canary. The dependencies are specified as a key-value pair, where the key is the type of dependency and the value is the dependency reference. * *(dict) --* A structure that contains information about a dependency for a canary. * **Type** *(string) --* The type of dependency. Valid value is "LambdaLayer". * **Reference** *(string) --* The dependency reference. For Lambda layers, this is the ARN of the Lambda layer. For more information about Lambda ARN format, see Lambda. * **ExecutionRoleArn** *(string) --* The ARN of the IAM role used to run the canary. This role must include "lambda.amazonaws.com" as a principal in the trust policy. * **Schedule** *(dict) --* A structure that contains information about how often the canary is to run, and when these runs are to stop. * **Expression** *(string) --* A "rate" expression or a "cron" expression that defines how often the canary is to run. For a rate expression, The syntax is "rate(number unit)". *unit* can be "minute", "minutes", or "hour". For example, "rate(1 minute)" runs the canary once a minute, "rate(10 minutes)" runs it once every 10 minutes, and "rate(1 hour)" runs it once every hour. You can specify a frequency between "rate(1 minute)" and "rate(1 hour)". Specifying "rate(0 minute)" or "rate(0 hour)" is a special value that causes the canary to run only once when it is started. Use "cron(expression)" to specify a cron expression. For information about the syntax for cron expressions, see Scheduling canary runs using cron. * **DurationInSeconds** *(integer) --* How long, in seconds, for the canary to continue making regular runs after it was created. The runs are performed according to the schedule in the "Expression" value. * **RetryConfig** *(dict) --* A structure that contains the retry configuration for a canary * **MaxRetries** *(integer) --* The maximum number of retries. The value must be less than or equal to 2. * **RunConfig** *(dict) --* A structure that contains information about a canary run. * **TimeoutInSeconds** *(integer) --* How long the canary is allowed to run before it must stop. * **MemoryInMB** *(integer) --* The maximum amount of memory available to the canary while it is running, in MB. This value must be a multiple of 64. * **ActiveTracing** *(boolean) --* Displays whether this canary run used active X-Ray tracing. * **EphemeralStorage** *(integer) --* Specifies the amount of ephemeral storage (in MB) to allocate for the canary run during execution. This temporary storage is used for storing canary run artifacts (which are uploaded to an Amazon S3 bucket at the end of the run), and any canary browser operations. This temporary storage is cleared after the run is completed. Default storage value is 1024 MB. * **SuccessRetentionPeriodInDays** *(integer) --* The number of days to retain data about successful runs of this canary. This setting affects the range of information returned by GetCanaryRuns, as well as the range of information displayed in the Synthetics console. * **FailureRetentionPeriodInDays** *(integer) --* The number of days to retain data about failed runs of this canary. This setting affects the range of information returned by GetCanaryRuns, as well as the range of information displayed in the Synthetics console. * **Status** *(dict) --* A structure that contains information about the canary's status. * **State** *(string) --* The current state of the canary. * **StateReason** *(string) --* If the canary creation or update failed, this field provides details on the failure. * **StateReasonCode** *(string) --* If the canary creation or update failed, this field displays the reason code. * **Timeline** *(dict) --* A structure that contains information about when the canary was created, modified, and most recently run. * **Created** *(datetime) --* The date and time the canary was created. * **LastModified** *(datetime) --* The date and time the canary was most recently modified. * **LastStarted** *(datetime) --* The date and time that the canary's most recent run started. * **LastStopped** *(datetime) --* The date and time that the canary's most recent run ended. * **ArtifactS3Location** *(string) --* The location in Amazon S3 where Synthetics stores artifacts from the runs of this canary. Artifacts include the log file, screenshots, and HAR files. * **EngineArn** *(string) --* The ARN of the Lambda function that is used as your canary's engine. For more information about Lambda ARN format, see Resources and Conditions for Lambda Actions. * **RuntimeVersion** *(string) --* Specifies the runtime version to use for the canary. For more information about runtime versions, see Canary Runtime Versions. * **VpcConfig** *(dict) --* If this canary is to test an endpoint in a VPC, this structure contains information about the subnets and security groups of the VPC endpoint. For more information, see Running a Canary in a VPC. * **VpcId** *(string) --* The IDs of the VPC where this canary is to run. * **SubnetIds** *(list) --* The IDs of the subnets where this canary is to run. * *(string) --* * **SecurityGroupIds** *(list) --* The IDs of the security groups for this canary. * *(string) --* * **Ipv6AllowedForDualStack** *(boolean) --* Indicates whether this canary allows outbound IPv6 traffic if it is connected to dual-stack subnets. * **VisualReference** *(dict) --* If this canary performs visual monitoring by comparing screenshots, this structure contains the ID of the canary run to use as the baseline for screenshots, and the coordinates of any parts of the screen to ignore during the visual monitoring comparison. * **BaseScreenshots** *(list) --* An array of screenshots that are used as the baseline for comparisons during visual monitoring. * *(dict) --* A structure representing a screenshot that is used as a baseline during visual monitoring comparisons made by the canary. * **ScreenshotName** *(string) --* The name of the screenshot. This is generated the first time the canary is run after the "UpdateCanary" operation that specified for this canary to perform visual monitoring. * **IgnoreCoordinates** *(list) --* Coordinates that define the part of a screen to ignore during screenshot comparisons. To obtain the coordinates to use here, use the CloudWatch console to draw the boundaries on the screen. For more information, see Editing or deleting a canary * *(string) --* * **BaseCanaryRunId** *(string) --* The ID of the canary run that produced the baseline screenshots that are used for visual monitoring comparisons by this canary. * **ProvisionedResourceCleanup** *(string) --* Specifies whether to also delete the Lambda functions and layers used by this canary when the canary is deleted. If it is "AUTOMATIC", the Lambda functions and layers will be deleted when the canary is deleted. If the value of this parameter is "OFF", then the value of the "DeleteLambda" parameter of the DeleteCanary operation determines whether the Lambda functions and layers will be deleted. * **Tags** *(dict) --* The list of key-value pairs that are associated with the canary. * *(string) --* * *(string) --* * **ArtifactConfig** *(dict) --* A structure that contains the configuration for canary artifacts, including the encryption-at-rest settings for artifacts that the canary uploads to Amazon S3. * **S3Encryption** *(dict) --* A structure that contains the configuration of encryption settings for canary artifacts that are stored in Amazon S3. * **EncryptionMode** *(string) --* The encryption method to use for artifacts created by this canary. Specify "SSE_S3" to use server-side encryption (SSE) with an Amazon S3-managed key. Specify "SSE-KMS" to use server-side encryption with a customer-managed KMS key. If you omit this parameter, an Amazon Web Services- managed KMS key is used. * **KmsKeyArn** *(string) --* The ARN of the customer-managed KMS key to use, if you specify "SSE-KMS" for "EncryptionMode" * **DryRunConfig** *(dict) --* Returns the dry run configurations for a canary. * **DryRunId** *(string) --* The DryRunId associated with an existing canary’s dry run. You can use this DryRunId to retrieve information about the dry run. * **LastDryRunExecutionStatus** *(string) --* Returns the last execution status for a canary's dry run. **Exceptions** * "Synthetics.Client.exceptions.InternalServerException" * "Synthetics.Client.exceptions.ValidationException" * "Synthetics.Client.exceptions.RequestEntityTooLargeException" Synthetics / Client / tag_resource tag_resource ************ Synthetics.Client.tag_resource(**kwargs) Assigns one or more tags (key-value pairs) to the specified canary or group. Tags can help you organize and categorize your resources. You can also use them to scope user permissions, by granting a user permission to access or change only resources with certain tag values. Tags don't have any semantic meaning to Amazon Web Services and are interpreted strictly as strings of characters. You can use the "TagResource" action with a resource that already has tags. If you specify a new tag key for the resource, this tag is appended to the list of tags associated with the resource. If you specify a tag key that is already associated with the resource, the new tag value that you specify replaces the previous value for that tag. You can associate as many as 50 tags with a canary or group. See also: AWS API Documentation **Request Syntax** response = client.tag_resource( ResourceArn='string', Tags={ 'string': 'string' } ) Parameters: * **ResourceArn** (*string*) -- **[REQUIRED]** The ARN of the canary or group that you're adding tags to. The ARN format of a canary is >>``<>``<<. The ARN format of a group is "arn:aws:synthetics:Region :account-id:group:group-name" * **Tags** (*dict*) -- **[REQUIRED]** The list of key-value pairs to associate with the resource. * *(string) --* * *(string) --* Return type: dict Returns: **Response Syntax** {} **Response Structure** * *(dict) --* **Exceptions** * "Synthetics.Client.exceptions.BadRequestException" * "Synthetics.Client.exceptions.NotFoundException" * "Synthetics.Client.exceptions.TooManyRequestsException" * "Synthetics.Client.exceptions.ConflictException" * "Synthetics.Client.exceptions.InternalFailureException" Synthetics / Client / describe_canaries describe_canaries ***************** Synthetics.Client.describe_canaries(**kwargs) This operation returns a list of the canaries in your account, along with full details about each canary. This operation supports resource-level authorization using an IAM policy and the "Names" parameter. If you specify the "Names" parameter, the operation is successful only if you have authorization to view all the canaries that you specify in your request. If you do not have permission to view any of the canaries, the request fails with a 403 response. You are required to use the "Names" parameter if you are logged on to a user or role that has an IAM policy that restricts which canaries that you are allowed to view. For more information, see Limiting a user to viewing specific canaries. See also: AWS API Documentation **Request Syntax** response = client.describe_canaries( NextToken='string', MaxResults=123, Names=[ 'string', ] ) Parameters: * **NextToken** (*string*) -- A token that indicates that there is more data available. You can use this token in a subsequent operation to retrieve the next set of results. * **MaxResults** (*integer*) -- Specify this parameter to limit how many canaries are returned each time you use the "DescribeCanaries" operation. If you omit this parameter, the default of 20 is used. * **Names** (*list*) -- Use this parameter to return only canaries that match the names that you specify here. You can specify as many as five canary names. If you specify this parameter, the operation is successful only if you have authorization to view all the canaries that you specify in your request. If you do not have permission to view any of the canaries, the request fails with a 403 response. You are required to use this parameter if you are logged on to a user or role that has an IAM policy that restricts which canaries that you are allowed to view. For more information, see Limiting a user to viewing specific canaries. * *(string) --* Return type: dict Returns: **Response Syntax** { 'Canaries': [ { 'Id': 'string', 'Name': 'string', 'Code': { 'SourceLocationArn': 'string', 'Handler': 'string', 'Dependencies': [ { 'Type': 'LambdaLayer', 'Reference': 'string' }, ] }, 'ExecutionRoleArn': 'string', 'Schedule': { 'Expression': 'string', 'DurationInSeconds': 123, 'RetryConfig': { 'MaxRetries': 123 } }, 'RunConfig': { 'TimeoutInSeconds': 123, 'MemoryInMB': 123, 'ActiveTracing': True|False, 'EphemeralStorage': 123 }, 'SuccessRetentionPeriodInDays': 123, 'FailureRetentionPeriodInDays': 123, 'Status': { 'State': 'CREATING'|'READY'|'STARTING'|'RUNNING'|'UPDATING'|'STOPPING'|'STOPPED'|'ERROR'|'DELETING', 'StateReason': 'string', 'StateReasonCode': 'INVALID_PERMISSIONS'|'CREATE_PENDING'|'CREATE_IN_PROGRESS'|'CREATE_FAILED'|'UPDATE_PENDING'|'UPDATE_IN_PROGRESS'|'UPDATE_COMPLETE'|'ROLLBACK_COMPLETE'|'ROLLBACK_FAILED'|'DELETE_IN_PROGRESS'|'DELETE_FAILED'|'SYNC_DELETE_IN_PROGRESS' }, 'Timeline': { 'Created': datetime(2015, 1, 1), 'LastModified': datetime(2015, 1, 1), 'LastStarted': datetime(2015, 1, 1), 'LastStopped': datetime(2015, 1, 1) }, 'ArtifactS3Location': 'string', 'EngineArn': 'string', 'RuntimeVersion': 'string', 'VpcConfig': { 'VpcId': 'string', 'SubnetIds': [ 'string', ], 'SecurityGroupIds': [ 'string', ], 'Ipv6AllowedForDualStack': True|False }, 'VisualReference': { 'BaseScreenshots': [ { 'ScreenshotName': 'string', 'IgnoreCoordinates': [ 'string', ] }, ], 'BaseCanaryRunId': 'string' }, 'ProvisionedResourceCleanup': 'AUTOMATIC'|'OFF', 'Tags': { 'string': 'string' }, 'ArtifactConfig': { 'S3Encryption': { 'EncryptionMode': 'SSE_S3'|'SSE_KMS', 'KmsKeyArn': 'string' } }, 'DryRunConfig': { 'DryRunId': 'string', 'LastDryRunExecutionStatus': 'string' } }, ], 'NextToken': 'string' } **Response Structure** * *(dict) --* * **Canaries** *(list) --* Returns an array. Each item in the array contains the full information about one canary. * *(dict) --* This structure contains all information about one canary in your account. * **Id** *(string) --* The unique ID of this canary. * **Name** *(string) --* The name of the canary. * **Code** *(dict) --* This structure contains information about the canary's Lambda handler and where its code is stored by CloudWatch Synthetics. * **SourceLocationArn** *(string) --* The ARN of the Lambda layer where Synthetics stores the canary script code. * **Handler** *(string) --* The entry point to use for the source code when running the canary. * **Dependencies** *(list) --* A list of dependencies that are used for running this canary. The dependencies are specified as a key-value pair, where the key is the type of dependency and the value is the dependency reference. * *(dict) --* A structure that contains information about a dependency for a canary. * **Type** *(string) --* The type of dependency. Valid value is "LambdaLayer". * **Reference** *(string) --* The dependency reference. For Lambda layers, this is the ARN of the Lambda layer. For more information about Lambda ARN format, see Lambda. * **ExecutionRoleArn** *(string) --* The ARN of the IAM role used to run the canary. This role must include "lambda.amazonaws.com" as a principal in the trust policy. * **Schedule** *(dict) --* A structure that contains information about how often the canary is to run, and when these runs are to stop. * **Expression** *(string) --* A "rate" expression or a "cron" expression that defines how often the canary is to run. For a rate expression, The syntax is "rate(number unit)". *unit* can be "minute", "minutes", or "hour". For example, "rate(1 minute)" runs the canary once a minute, "rate(10 minutes)" runs it once every 10 minutes, and "rate(1 hour)" runs it once every hour. You can specify a frequency between "rate(1 minute)" and "rate(1 hour)". Specifying "rate(0 minute)" or "rate(0 hour)" is a special value that causes the canary to run only once when it is started. Use "cron(expression)" to specify a cron expression. For information about the syntax for cron expressions, see Scheduling canary runs using cron. * **DurationInSeconds** *(integer) --* How long, in seconds, for the canary to continue making regular runs after it was created. The runs are performed according to the schedule in the "Expression" value. * **RetryConfig** *(dict) --* A structure that contains the retry configuration for a canary * **MaxRetries** *(integer) --* The maximum number of retries. The value must be less than or equal to 2. * **RunConfig** *(dict) --* A structure that contains information about a canary run. * **TimeoutInSeconds** *(integer) --* How long the canary is allowed to run before it must stop. * **MemoryInMB** *(integer) --* The maximum amount of memory available to the canary while it is running, in MB. This value must be a multiple of 64. * **ActiveTracing** *(boolean) --* Displays whether this canary run used active X-Ray tracing. * **EphemeralStorage** *(integer) --* Specifies the amount of ephemeral storage (in MB) to allocate for the canary run during execution. This temporary storage is used for storing canary run artifacts (which are uploaded to an Amazon S3 bucket at the end of the run), and any canary browser operations. This temporary storage is cleared after the run is completed. Default storage value is 1024 MB. * **SuccessRetentionPeriodInDays** *(integer) --* The number of days to retain data about successful runs of this canary. This setting affects the range of information returned by GetCanaryRuns, as well as the range of information displayed in the Synthetics console. * **FailureRetentionPeriodInDays** *(integer) --* The number of days to retain data about failed runs of this canary. This setting affects the range of information returned by GetCanaryRuns, as well as the range of information displayed in the Synthetics console. * **Status** *(dict) --* A structure that contains information about the canary's status. * **State** *(string) --* The current state of the canary. * **StateReason** *(string) --* If the canary creation or update failed, this field provides details on the failure. * **StateReasonCode** *(string) --* If the canary creation or update failed, this field displays the reason code. * **Timeline** *(dict) --* A structure that contains information about when the canary was created, modified, and most recently run. * **Created** *(datetime) --* The date and time the canary was created. * **LastModified** *(datetime) --* The date and time the canary was most recently modified. * **LastStarted** *(datetime) --* The date and time that the canary's most recent run started. * **LastStopped** *(datetime) --* The date and time that the canary's most recent run ended. * **ArtifactS3Location** *(string) --* The location in Amazon S3 where Synthetics stores artifacts from the runs of this canary. Artifacts include the log file, screenshots, and HAR files. * **EngineArn** *(string) --* The ARN of the Lambda function that is used as your canary's engine. For more information about Lambda ARN format, see Resources and Conditions for Lambda Actions. * **RuntimeVersion** *(string) --* Specifies the runtime version to use for the canary. For more information about runtime versions, see Canary Runtime Versions. * **VpcConfig** *(dict) --* If this canary is to test an endpoint in a VPC, this structure contains information about the subnets and security groups of the VPC endpoint. For more information, see Running a Canary in a VPC. * **VpcId** *(string) --* The IDs of the VPC where this canary is to run. * **SubnetIds** *(list) --* The IDs of the subnets where this canary is to run. * *(string) --* * **SecurityGroupIds** *(list) --* The IDs of the security groups for this canary. * *(string) --* * **Ipv6AllowedForDualStack** *(boolean) --* Indicates whether this canary allows outbound IPv6 traffic if it is connected to dual-stack subnets. * **VisualReference** *(dict) --* If this canary performs visual monitoring by comparing screenshots, this structure contains the ID of the canary run to use as the baseline for screenshots, and the coordinates of any parts of the screen to ignore during the visual monitoring comparison. * **BaseScreenshots** *(list) --* An array of screenshots that are used as the baseline for comparisons during visual monitoring. * *(dict) --* A structure representing a screenshot that is used as a baseline during visual monitoring comparisons made by the canary. * **ScreenshotName** *(string) --* The name of the screenshot. This is generated the first time the canary is run after the "UpdateCanary" operation that specified for this canary to perform visual monitoring. * **IgnoreCoordinates** *(list) --* Coordinates that define the part of a screen to ignore during screenshot comparisons. To obtain the coordinates to use here, use the CloudWatch console to draw the boundaries on the screen. For more information, see Editing or deleting a canary * *(string) --* * **BaseCanaryRunId** *(string) --* The ID of the canary run that produced the baseline screenshots that are used for visual monitoring comparisons by this canary. * **ProvisionedResourceCleanup** *(string) --* Specifies whether to also delete the Lambda functions and layers used by this canary when the canary is deleted. If it is "AUTOMATIC", the Lambda functions and layers will be deleted when the canary is deleted. If the value of this parameter is "OFF", then the value of the "DeleteLambda" parameter of the DeleteCanary operation determines whether the Lambda functions and layers will be deleted. * **Tags** *(dict) --* The list of key-value pairs that are associated with the canary. * *(string) --* * *(string) --* * **ArtifactConfig** *(dict) --* A structure that contains the configuration for canary artifacts, including the encryption-at-rest settings for artifacts that the canary uploads to Amazon S3. * **S3Encryption** *(dict) --* A structure that contains the configuration of encryption settings for canary artifacts that are stored in Amazon S3. * **EncryptionMode** *(string) --* The encryption method to use for artifacts created by this canary. Specify "SSE_S3" to use server-side encryption (SSE) with an Amazon S3-managed key. Specify "SSE-KMS" to use server-side encryption with a customer-managed KMS key. If you omit this parameter, an Amazon Web Services- managed KMS key is used. * **KmsKeyArn** *(string) --* The ARN of the customer-managed KMS key to use, if you specify "SSE-KMS" for "EncryptionMode" * **DryRunConfig** *(dict) --* Returns the dry run configurations for a canary. * **DryRunId** *(string) --* The DryRunId associated with an existing canary’s dry run. You can use this DryRunId to retrieve information about the dry run. * **LastDryRunExecutionStatus** *(string) --* Returns the last execution status for a canary's dry run. * **NextToken** *(string) --* A token that indicates that there is more data available. You can use this token in a subsequent "DescribeCanaries" operation to retrieve the next set of results. **Exceptions** * "Synthetics.Client.exceptions.InternalServerException" * "Synthetics.Client.exceptions.ValidationException" Synthetics / Client / describe_runtime_versions describe_runtime_versions ************************* Synthetics.Client.describe_runtime_versions(**kwargs) Returns a list of Synthetics canary runtime versions. For more information, see Canary Runtime Versions. See also: AWS API Documentation **Request Syntax** response = client.describe_runtime_versions( NextToken='string', MaxResults=123 ) Parameters: * **NextToken** (*string*) -- A token that indicates that there is more data available. You can use this token in a subsequent "DescribeRuntimeVersions" operation to retrieve the next set of results. * **MaxResults** (*integer*) -- Specify this parameter to limit how many runs are returned each time you use the "DescribeRuntimeVersions" operation. If you omit this parameter, the default of 100 is used. Return type: dict Returns: **Response Syntax** { 'RuntimeVersions': [ { 'VersionName': 'string', 'Description': 'string', 'ReleaseDate': datetime(2015, 1, 1), 'DeprecationDate': datetime(2015, 1, 1) }, ], 'NextToken': 'string' } **Response Structure** * *(dict) --* * **RuntimeVersions** *(list) --* An array of objects that display the details about each Synthetics canary runtime version. * *(dict) --* This structure contains information about one canary runtime version. For more information about runtime versions, see Canary Runtime Versions. * **VersionName** *(string) --* The name of the runtime version. For a list of valid runtime versions, see Canary Runtime Versions. * **Description** *(string) --* A description of the runtime version, created by Amazon. * **ReleaseDate** *(datetime) --* The date that the runtime version was released. * **DeprecationDate** *(datetime) --* If this runtime version is deprecated, this value is the date of deprecation. * **NextToken** *(string) --* A token that indicates that there is more data available. You can use this token in a subsequent "DescribeRuntimeVersions" operation to retrieve the next set of results. **Exceptions** * "Synthetics.Client.exceptions.InternalServerException" * "Synthetics.Client.exceptions.ValidationException" Synthetics / Client / update_canary update_canary ************* Synthetics.Client.update_canary(**kwargs) Updates the configuration of a canary that has already been created. You can't use this operation to update the tags of an existing canary. To change the tags of an existing canary, use TagResource. Note: When you use the "dryRunId" field when updating a canary, the only other field you can provide is the "Schedule". Adding any other field will thrown an exception. See also: AWS API Documentation **Request Syntax** response = client.update_canary( Name='string', Code={ 'S3Bucket': 'string', 'S3Key': 'string', 'S3Version': 'string', 'ZipFile': b'bytes', 'Handler': 'string', 'Dependencies': [ { 'Type': 'LambdaLayer', 'Reference': 'string' }, ] }, ExecutionRoleArn='string', RuntimeVersion='string', Schedule={ 'Expression': 'string', 'DurationInSeconds': 123, 'RetryConfig': { 'MaxRetries': 123 } }, RunConfig={ 'TimeoutInSeconds': 123, 'MemoryInMB': 123, 'ActiveTracing': True|False, 'EnvironmentVariables': { 'string': 'string' }, 'EphemeralStorage': 123 }, SuccessRetentionPeriodInDays=123, FailureRetentionPeriodInDays=123, VpcConfig={ 'SubnetIds': [ 'string', ], 'SecurityGroupIds': [ 'string', ], 'Ipv6AllowedForDualStack': True|False }, VisualReference={ 'BaseScreenshots': [ { 'ScreenshotName': 'string', 'IgnoreCoordinates': [ 'string', ] }, ], 'BaseCanaryRunId': 'string' }, ArtifactS3Location='string', ArtifactConfig={ 'S3Encryption': { 'EncryptionMode': 'SSE_S3'|'SSE_KMS', 'KmsKeyArn': 'string' } }, ProvisionedResourceCleanup='AUTOMATIC'|'OFF', DryRunId='string' ) Parameters: * **Name** (*string*) -- **[REQUIRED]** The name of the canary that you want to update. To find the names of your canaries, use DescribeCanaries. You cannot change the name of a canary that has already been created. * **Code** (*dict*) -- A structure that includes the entry point from which the canary should start running your script. If the script is stored in an Amazon S3 bucket, the bucket name, key, and version are also included. * **S3Bucket** *(string) --* If your canary script is located in Amazon S3, specify the bucket name here. Do not include "s3://" as the start of the bucket name. * **S3Key** *(string) --* The Amazon S3 key of your script. For more information, see Working with Amazon S3 Objects. * **S3Version** *(string) --* The Amazon S3 version ID of your script. * **ZipFile** *(bytes) --* If you input your canary script directly into the canary instead of referring to an Amazon S3 location, the value of this parameter is the base64-encoded contents of the .zip file that contains the script. It must be smaller than 225 Kb. For large canary scripts, we recommend that you use an Amazon S3 location instead of inputting it directly with this parameter. * **Handler** *(string) --* **[REQUIRED]** The entry point to use for the source code when running the canary. For canaries that use the "syn-python-selenium-1.0" runtime or a "syn-nodejs.puppeteer" runtime earlier than "syn-nodejs.puppeteer-3.4", the handler must be specified as "fileName.handler". For "syn-python-selenium-1.1", "syn- nodejs.puppeteer-3.4", and later runtimes, the handler can be specified as >>``<>``<<, or you can specify a folder where canary scripts reside as >>``<>``<<. * **Dependencies** *(list) --* A list of dependencies that should be used for running this canary. Specify the dependencies as a key-value pair, where the key is the type of dependency and the value is the dependency reference. * *(dict) --* A structure that contains information about a dependency for a canary. * **Type** *(string) --* The type of dependency. Valid value is "LambdaLayer". * **Reference** *(string) --* **[REQUIRED]** The dependency reference. For Lambda layers, this is the ARN of the Lambda layer. For more information about Lambda ARN format, see Lambda. * **ExecutionRoleArn** (*string*) -- The ARN of the IAM role to be used to run the canary. This role must already exist, and must include "lambda.amazonaws.com" as a principal in the trust policy. The role must also have the following permissions: * "s3:PutObject" * "s3:GetBucketLocation" * "s3:ListAllMyBuckets" * "cloudwatch:PutMetricData" * "logs:CreateLogGroup" * "logs:CreateLogStream" * "logs:CreateLogStream" * **RuntimeVersion** (*string*) -- Specifies the runtime version to use for the canary. For a list of valid runtime versions and for more information about runtime versions, see Canary Runtime Versions. * **Schedule** (*dict*) -- A structure that contains information about how often the canary is to run, and when these runs are to stop. * **Expression** *(string) --* **[REQUIRED]** A "rate" expression or a "cron" expression that defines how often the canary is to run. For a rate expression, The syntax is "rate(number unit)". *unit* can be "minute", "minutes", or "hour". For example, "rate(1 minute)" runs the canary once a minute, "rate(10 minutes)" runs it once every 10 minutes, and "rate(1 hour)" runs it once every hour. You can specify a frequency between "rate(1 minute)" and "rate(1 hour)". Specifying "rate(0 minute)" or "rate(0 hour)" is a special value that causes the canary to run only once when it is started. Use "cron(expression)" to specify a cron expression. You can't schedule a canary to wait for more than a year before running. For information about the syntax for cron expressions, see Scheduling canary runs using cron. * **DurationInSeconds** *(integer) --* How long, in seconds, for the canary to continue making regular runs according to the schedule in the "Expression" value. If you specify 0, the canary continues making runs until you stop it. If you omit this field, the default of 0 is used. * **RetryConfig** *(dict) --* A structure that contains the retry configuration for a canary * **MaxRetries** *(integer) --* **[REQUIRED]** The maximum number of retries. The value must be less than or equal to 2. * **RunConfig** (*dict*) -- A structure that contains the timeout value that is used for each individual run of the canary. Warning: Environment variable keys and values are encrypted at rest using Amazon Web Services owned KMS keys. However, the environment variables are not encrypted on the client side. Do not store sensitive information in them. * **TimeoutInSeconds** *(integer) --* 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. * **MemoryInMB** *(integer) --* The maximum amount of memory available to the canary while it is running, in MB. This value must be a multiple of 64. * **ActiveTracing** *(boolean) --* 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. * **EnvironmentVariables** *(dict) --* 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. Warning: Environment variable keys and values are encrypted at rest using Amazon Web Services owned KMS keys. However, the environment variables are not encrypted on the client side. Do not store sensitive information in them. * *(string) --* * *(string) --* * **EphemeralStorage** *(integer) --* Specifies the amount of ephemeral storage (in MB) to allocate for the canary run during execution. This temporary storage is used for storing canary run artifacts (which are uploaded to an Amazon S3 bucket at the end of the run), and any canary browser operations. This temporary storage is cleared after the run is completed. Default storage value is 1024 MB. * **SuccessRetentionPeriodInDays** (*integer*) -- The number of days to retain data about successful runs of this canary. This setting affects the range of information returned by GetCanaryRuns, as well as the range of information displayed in the Synthetics console. * **FailureRetentionPeriodInDays** (*integer*) -- The number of days to retain data about failed runs of this canary. This setting affects the range of information returned by GetCanaryRuns, as well as the range of information displayed in the Synthetics console. * **VpcConfig** (*dict*) -- If this canary is to test an endpoint in a VPC, this structure contains information about the subnet and security groups of the VPC endpoint. For more information, see Running a Canary in a VPC. * **SubnetIds** *(list) --* The IDs of the subnets where this canary is to run. * *(string) --* * **SecurityGroupIds** *(list) --* The IDs of the security groups for this canary. * *(string) --* * **Ipv6AllowedForDualStack** *(boolean) --* Set this to "true" to allow outbound IPv6 traffic on VPC canaries that are connected to dual-stack subnets. The default is "false" * **VisualReference** (*dict*) -- Defines the screenshots to use as the baseline for comparisons during visual monitoring comparisons during future runs of this canary. If you omit this parameter, no changes are made to any baseline screenshots that the canary might be using already. Visual monitoring is supported only on canaries running the **syn-puppeteer-node-3.2** runtime or later. For more information, see Visual monitoring and Visual monitoring blueprint * **BaseScreenshots** *(list) --* An array of screenshots that will be used as the baseline for visual monitoring in future runs of this canary. If there is a screenshot that you don't want to be used for visual monitoring, remove it from this array. * *(dict) --* A structure representing a screenshot that is used as a baseline during visual monitoring comparisons made by the canary. * **ScreenshotName** *(string) --* **[REQUIRED]** The name of the screenshot. This is generated the first time the canary is run after the "UpdateCanary" operation that specified for this canary to perform visual monitoring. * **IgnoreCoordinates** *(list) --* Coordinates that define the part of a screen to ignore during screenshot comparisons. To obtain the coordinates to use here, use the CloudWatch console to draw the boundaries on the screen. For more information, see Editing or deleting a canary * *(string) --* * **BaseCanaryRunId** *(string) --* **[REQUIRED]** Specifies which canary run to use the screenshots from as the baseline for future visual monitoring with this canary. Valid values are "nextrun" to use the screenshots from the next run after this update is made, "lastrun" to use the screenshots from the most recent run before this update was made, or the value of "Id" in the CanaryRun from a run of this a canary in the past 31 days. If you specify the "Id" of a canary run older than 31 days, the operation returns a 400 validation exception error.. * **ArtifactS3Location** (*string*) -- The location in Amazon S3 where Synthetics stores artifacts from the test runs of this canary. Artifacts include the log file, screenshots, and HAR files. The name of the Amazon S3 bucket can't include a period (.). * **ArtifactConfig** (*dict*) -- A structure that contains the configuration for canary artifacts, including the encryption-at-rest settings for artifacts that the canary uploads to Amazon S3. * **S3Encryption** *(dict) --* A structure that contains the configuration of the encryption-at-rest settings for artifacts that the canary uploads to Amazon S3. Artifact encryption functionality is available only for canaries that use Synthetics runtime version syn-nodejs-puppeteer-3.3 or later. For more information, see Encrypting canary artifacts * **EncryptionMode** *(string) --* The encryption method to use for artifacts created by this canary. Specify "SSE_S3" to use server-side encryption (SSE) with an Amazon S3-managed key. Specify "SSE-KMS" to use server-side encryption with a customer-managed KMS key. If you omit this parameter, an Amazon Web Services-managed KMS key is used. * **KmsKeyArn** *(string) --* The ARN of the customer-managed KMS key to use, if you specify "SSE-KMS" for "EncryptionMode" * **ProvisionedResourceCleanup** (*string*) -- Specifies whether to also delete the Lambda functions and layers used by this canary when the canary is deleted. If the value of this parameter is "OFF", then the value of the "DeleteLambda" parameter of the DeleteCanary operation determines whether the Lambda functions and layers will be deleted. * **DryRunId** (*string*) -- Update the existing canary using the updated configurations from the DryRun associated with the DryRunId. Note: When you use the "dryRunId" field when updating a canary, the only other field you can provide is the "Schedule". Adding any other field will thrown an exception. Return type: dict Returns: **Response Syntax** {} **Response Structure** * *(dict) --* **Exceptions** * "Synthetics.Client.exceptions.InternalServerException" * "Synthetics.Client.exceptions.ValidationException" * "Synthetics.Client.exceptions.ResourceNotFoundException" * "Synthetics.Client.exceptions.ConflictException" * "Synthetics.Client.exceptions.RequestEntityTooLargeException" * "Synthetics.Client.exceptions.AccessDeniedException"