Class: Aws::Synthetics::Client

Inherits:
Seahorse::Client::Base
  • Object
show all
Includes:
ClientStubs
Defined in:
lib/aws-sdk-synthetics/client.rb

Overview

An API client for Synthetics. To construct a client, you need to configure a ‘:region` and `:credentials`.

client = Aws::Synthetics::Client.new(
  region: region_name,
  credentials: credentials,
  # ...
)

For details on configuring region and credentials see the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).

See #initialize for a full list of supported configuration options.

Class Attribute Summary collapse

API Operations collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ Client

Returns a new instance of Client.

Parameters:

  • options (Hash)

Options Hash (options):

  • :credentials (required, Aws::CredentialProvider)

    Your AWS credentials. This can be an instance of any one of the following classes:

    • ‘Aws::Credentials` - Used for configuring static, non-refreshing credentials.

    • ‘Aws::SharedCredentials` - Used for loading static credentials from a shared file, such as `~/.aws/config`.

    • ‘Aws::AssumeRoleCredentials` - Used when you need to assume a role.

    • ‘Aws::AssumeRoleWebIdentityCredentials` - Used when you need to assume a role after providing credentials via the web.

    • ‘Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an access token generated from `aws login`.

    • ‘Aws::ProcessCredentials` - Used for loading credentials from a process that outputs to stdout.

    • ‘Aws::InstanceProfileCredentials` - Used for loading credentials from an EC2 IMDS on an EC2 instance.

    • ‘Aws::ECSCredentials` - Used for loading credentials from instances running in ECS.

    • ‘Aws::CognitoIdentityCredentials` - Used for loading credentials from the Cognito Identity service.

    When ‘:credentials` are not configured directly, the following locations will be searched for credentials:

    • Aws.config`

    • The ‘:access_key_id`, `:secret_access_key`, and `:session_token` options.

    • ENV, ENV

    • ‘~/.aws/credentials`

    • ‘~/.aws/config`

    • EC2/ECS IMDS instance profile - When used by default, the timeouts are very aggressive. Construct and pass an instance of ‘Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to enable retries and extended timeouts. Instance profile credential fetching can be disabled by setting ENV to true.

  • :region (required, String)

    The AWS region to connect to. The configured ‘:region` is used to determine the service `:endpoint`. When not passed, a default `:region` is searched for in the following locations:

  • :access_key_id (String)
  • :active_endpoint_cache (Boolean) — default: false

    When set to ‘true`, a thread polling for endpoints will be running in the background every 60 secs (default). Defaults to `false`.

  • :adaptive_retry_wait_to_fill (Boolean) — default: true

    Used only in ‘adaptive` retry mode. When true, the request will sleep until there is sufficent client side capacity to retry the request. When false, the request will raise a `RetryCapacityNotAvailableError` and will not retry instead of sleeping.

  • :client_side_monitoring (Boolean) — default: false

    When ‘true`, client-side metrics will be collected for all API requests from this client.

  • :client_side_monitoring_client_id (String) — default: ""

    Allows you to provide an identifier for this client which will be attached to all generated client side metrics. Defaults to an empty string.

  • :client_side_monitoring_host (String) — default: "127.0.0.1"

    Allows you to specify the DNS hostname or IPv4 or IPv6 address that the client side monitoring agent is running on, where client metrics will be published via UDP.

  • :client_side_monitoring_port (Integer) — default: 31000

    Required for publishing client metrics. The port that the client side monitoring agent is running on, where client metrics will be published via UDP.

  • :client_side_monitoring_publisher (Aws::ClientSideMonitoring::Publisher) — default: Aws::ClientSideMonitoring::Publisher

    Allows you to provide a custom client-side monitoring publisher class. By default, will use the Client Side Monitoring Agent Publisher.

  • :convert_params (Boolean) — default: true

    When ‘true`, an attempt is made to coerce request parameters into the required types.

  • :correct_clock_skew (Boolean) — default: true

    Used only in ‘standard` and adaptive retry modes. Specifies whether to apply a clock skew correction and retry requests with skewed client clocks.

  • :defaults_mode (String) — default: "legacy"

    See DefaultsModeConfiguration for a list of the accepted modes and the configuration defaults that are included.

  • :disable_host_prefix_injection (Boolean) — default: false

    Set to true to disable SDK automatically adding host prefix to default service endpoint when available.

  • :disable_request_compression (Boolean) — default: false

    When set to ‘true’ the request body will not be compressed for supported operations.

  • :endpoint (String, URI::HTTPS, URI::HTTP)

    Normally you should not configure the ‘:endpoint` option directly. This is normally constructed from the `:region` option. Configuring `:endpoint` is normally reserved for connecting to test or custom endpoints. The endpoint should be a URI formatted like:

    'http://example.com'
    'https://example.com'
    'http://example.com:123'
    
  • :endpoint_cache_max_entries (Integer) — default: 1000

    Used for the maximum size limit of the LRU cache storing endpoints data for endpoint discovery enabled operations. Defaults to 1000.

  • :endpoint_cache_max_threads (Integer) — default: 10

    Used for the maximum threads in use for polling endpoints to be cached, defaults to 10.

  • :endpoint_cache_poll_interval (Integer) — default: 60

    When :endpoint_discovery and :active_endpoint_cache is enabled, Use this option to config the time interval in seconds for making requests fetching endpoints information. Defaults to 60 sec.

  • :endpoint_discovery (Boolean) — default: false

    When set to ‘true`, endpoint discovery will be enabled for operations when available.

  • :ignore_configured_endpoint_urls (Boolean)

    Setting to true disables use of endpoint URLs provided via environment variables and the shared configuration file.

  • :log_formatter (Aws::Log::Formatter) — default: Aws::Log::Formatter.default

    The log formatter.

  • :log_level (Symbol) — default: :info

    The log level to send messages to the ‘:logger` at.

  • :logger (Logger)

    The Logger instance to send log messages to. If this option is not set, logging will be disabled.

  • :max_attempts (Integer) — default: 3

    An integer representing the maximum number attempts that will be made for a single request, including the initial attempt. For example, setting this value to 5 will result in a request being retried up to 4 times. Used in ‘standard` and `adaptive` retry modes.

  • :profile (String) — default: "default"

    Used when loading credentials from the shared credentials file at HOME/.aws/credentials. When not specified, ‘default’ is used.

  • :request_min_compression_size_bytes (Integer) — default: 10240

    The minimum size in bytes that triggers compression for request bodies. The value must be non-negative integer value between 0 and 10485780 bytes inclusive.

  • :retry_backoff (Proc)

    A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay. This option is only used in the ‘legacy` retry mode.

  • :retry_base_delay (Float) — default: 0.3

    The base delay in seconds used by the default backoff function. This option is only used in the ‘legacy` retry mode.

  • :retry_jitter (Symbol) — default: :none

    A delay randomiser function used by the default backoff function. Some predefined functions can be referenced by name - :none, :equal, :full, otherwise a Proc that takes and returns a number. This option is only used in the ‘legacy` retry mode.

    @see www.awsarchitectureblog.com/2015/03/backoff.html

  • :retry_limit (Integer) — default: 3

    The maximum number of times to retry failed requests. Only ~ 500 level server errors and certain ~ 400 level client errors are retried. Generally, these are throttling errors, data checksum errors, networking errors, timeout errors, auth errors, endpoint discovery, and errors from expired credentials. This option is only used in the ‘legacy` retry mode.

  • :retry_max_delay (Integer) — default: 0

    The maximum number of seconds to delay between retries (0 for no limit) used by the default backoff function. This option is only used in the ‘legacy` retry mode.

  • :retry_mode (String) — default: "legacy"

    Specifies which retry algorithm to use. Values are:

    • ‘legacy` - The pre-existing retry behavior. This is default value if no retry mode is provided.

    • ‘standard` - A standardized set of retry rules across the AWS SDKs. This includes support for retry quotas, which limit the number of unsuccessful retries a client can make.

    • ‘adaptive` - An experimental retry mode that includes all the functionality of `standard` mode along with automatic client side throttling. This is a provisional mode that may change behavior in the future.

  • :sdk_ua_app_id (String)

    A unique and opaque application ID that is appended to the User-Agent header as app/<sdk_ua_app_id>. It should have a maximum length of 50.

  • :secret_access_key (String)
  • :session_token (String)
  • :stub_responses (Boolean) — default: false

    Causes the client to return stubbed responses. By default fake responses are generated and returned. You can specify the response data to return or errors to raise by calling ClientStubs#stub_responses. See ClientStubs for more information.

    ** Please note ** When response stubbing is enabled, no HTTP requests are made, and retries are disabled.

  • :token_provider (Aws::TokenProvider)

    A Bearer Token Provider. This can be an instance of any one of the following classes:

    • ‘Aws::StaticTokenProvider` - Used for configuring static, non-refreshing tokens.

    • ‘Aws::SSOTokenProvider` - Used for loading tokens from AWS SSO using an access token generated from `aws login`.

    When ‘:token_provider` is not configured directly, the `Aws::TokenProviderChain` will be used to search for tokens configured for your profile in shared configuration files.

  • :use_dualstack_endpoint (Boolean)

    When set to ‘true`, dualstack enabled endpoints (with `.aws` TLD) will be used if available.

  • :use_fips_endpoint (Boolean)

    When set to ‘true`, fips compatible endpoints will be used if available. When a `fips` region is used, the region is normalized and this config is set to `true`.

  • :validate_params (Boolean) — default: true

    When ‘true`, request parameters are validated before sending the request.

  • :endpoint_provider (Aws::Synthetics::EndpointProvider)

    The endpoint provider used to resolve endpoints. Any object that responds to ‘#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::Synthetics::EndpointParameters`

  • :http_continue_timeout (Float) — default: 1

    The number of seconds to wait for a 100-continue response before sending the request body. This option has no effect unless the request has “Expect” header set to “100-continue”. Defaults to ‘nil` which disables this behaviour. This value can safely be set per request on the session.

  • :http_idle_timeout (Float) — default: 5

    The number of seconds a connection is allowed to sit idle before it is considered stale. Stale connections are closed and removed from the pool before making a request.

  • :http_open_timeout (Float) — default: 15

    The default number of seconds to wait for response data. This value can safely be set per-request on the session.

  • :http_proxy (URI::HTTP, String)

    A proxy to send requests through. Formatted like ‘proxy.com:123’.

  • :http_read_timeout (Float) — default: 60

    The default number of seconds to wait for response data. This value can safely be set per-request on the session.

  • :http_wire_trace (Boolean) — default: false

    When ‘true`, HTTP debug output will be sent to the `:logger`.

  • :on_chunk_received (Proc)

    When a Proc object is provided, it will be used as callback when each chunk of the response body is received. It provides three arguments: the chunk, the number of bytes received, and the total number of bytes in the response (or nil if the server did not send a ‘content-length`).

  • :on_chunk_sent (Proc)

    When a Proc object is provided, it will be used as callback when each chunk of the request body is sent. It provides three arguments: the chunk, the number of bytes read from the body, and the total number of bytes in the body.

  • :raise_response_errors (Boolean) — default: true

    When ‘true`, response errors are raised.

  • :ssl_ca_bundle (String)

    Full path to the SSL certificate authority bundle file that should be used when verifying peer certificates. If you do not pass ‘:ssl_ca_bundle` or `:ssl_ca_directory` the the system default will be used if available.

  • :ssl_ca_directory (String)

    Full path of the directory that contains the unbundled SSL certificate authority files for verifying peer certificates. If you do not pass ‘:ssl_ca_bundle` or `:ssl_ca_directory` the the system default will be used if available.

  • :ssl_ca_store (String)

    Sets the X509::Store to verify peer certificate.

  • :ssl_timeout (Float)

    Sets the SSL timeout in seconds

  • :ssl_verify_peer (Boolean) — default: true

    When ‘true`, SSL peer certificates are verified when establishing a connection.



409
410
411
# File 'lib/aws-sdk-synthetics/client.rb', line 409

def initialize(*args)
  super
end

Class Attribute Details

.identifierObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



1770
1771
1772
# File 'lib/aws-sdk-synthetics/client.rb', line 1770

def identifier
  @identifier
end

Class Method Details

.errors_moduleObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



1773
1774
1775
# File 'lib/aws-sdk-synthetics/client.rb', line 1773

def errors_module
  Errors
end

Instance Method Details

#associate_resource(params = {}) ⇒ Struct

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.

Examples:

Request syntax with placeholder values


resp = client.associate_resource({
  group_identifier: "GroupIdentifier", # required
  resource_arn: "CanaryArn", # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :group_identifier (required, String)

    Specifies the group. You can specify the group name, the ARN, or the group ID as the ‘GroupIdentifier`.

  • :resource_arn (required, String)

    The ARN of the canary that you want to associate with the specified group.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



442
443
444
445
# File 'lib/aws-sdk-synthetics/client.rb', line 442

def associate_resource(params = {}, options = {})
  req = build_request(:associate_resource, params)
  req.send_request(options)
end

#build_request(operation_name, params = {}) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Parameters:

  • params ({}) (defaults to: {})


1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
# File 'lib/aws-sdk-synthetics/client.rb', line 1748

def build_request(operation_name, params = {})
  handlers = @handlers.for(operation_name)
  context = Seahorse::Client::RequestContext.new(
    operation_name: operation_name,
    operation: config.api.operation(operation_name),
    client: self,
    params: params,
    config: config)
  context[:gem_name] = 'aws-sdk-synthetics'
  context[:gem_version] = '1.41.0'
  Seahorse::Client::Request.new(handlers, context)
end

#create_canary(params = {}) ⇒ Types::CreateCanaryResponse

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][1

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].

[1]: docs.aws.amazon.com/AmazonSynthetics/latest/APIReference/API_UpdateCanary.html [2]: docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Canaries_Roles [3]: docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/servicelens_canaries_security.html

Examples:

Request syntax with placeholder values


resp = client.create_canary({
  name: "CanaryName", # required
  code: { # required
    s3_bucket: "String",
    s3_key: "String",
    s3_version: "String",
    zip_file: "data",
    handler: "CodeHandler", # required
  },
  artifact_s3_location: "String", # required
  execution_role_arn: "RoleArn", # required
  schedule: { # required
    expression: "String", # required
    duration_in_seconds: 1,
  },
  run_config: {
    timeout_in_seconds: 1,
    memory_in_mb: 1,
    active_tracing: false,
    environment_variables: {
      "EnvironmentVariableName" => "EnvironmentVariableValue",
    },
  },
  success_retention_period_in_days: 1,
  failure_retention_period_in_days: 1,
  runtime_version: "String", # required
  vpc_config: {
    subnet_ids: ["SubnetId"],
    security_group_ids: ["SecurityGroupId"],
  },
  tags: {
    "TagKey" => "TagValue",
  },
  artifact_config: {
    s3_encryption: {
      encryption_mode: "SSE_S3", # accepts SSE_S3, SSE_KMS
      kms_key_arn: "KmsKeyArn",
    },
  },
})

Response structure


resp.canary.id #=> String
resp.canary.name #=> String
resp.canary.code.source_location_arn #=> String
resp.canary.code.handler #=> String
resp.canary.execution_role_arn #=> String
resp.canary.schedule.expression #=> String
resp.canary.schedule.duration_in_seconds #=> Integer
resp.canary.run_config.timeout_in_seconds #=> Integer
resp.canary.run_config.memory_in_mb #=> Integer
resp.canary.run_config.active_tracing #=> Boolean
resp.canary.success_retention_period_in_days #=> Integer
resp.canary.failure_retention_period_in_days #=> Integer
resp.canary.status.state #=> String, one of "CREATING", "READY", "STARTING", "RUNNING", "UPDATING", "STOPPING", "STOPPED", "ERROR", "DELETING"
resp.canary.status.state_reason #=> String
resp.canary.status.state_reason_code #=> String, one of "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"
resp.canary.timeline.created #=> Time
resp.canary.timeline.last_modified #=> Time
resp.canary.timeline.last_started #=> Time
resp.canary.timeline.last_stopped #=> Time
resp.canary.artifact_s3_location #=> String
resp.canary.engine_arn #=> String
resp.canary.runtime_version #=> String
resp.canary.vpc_config.vpc_id #=> String
resp.canary.vpc_config.subnet_ids #=> Array
resp.canary.vpc_config.subnet_ids[0] #=> String
resp.canary.vpc_config.security_group_ids #=> Array
resp.canary.vpc_config.security_group_ids[0] #=> String
resp.canary.visual_reference.base_screenshots #=> Array
resp.canary.visual_reference.base_screenshots[0].screenshot_name #=> String
resp.canary.visual_reference.base_screenshots[0].ignore_coordinates #=> Array
resp.canary.visual_reference.base_screenshots[0].ignore_coordinates[0] #=> String
resp.canary.visual_reference.base_canary_run_id #=> String
resp.canary.tags #=> Hash
resp.canary.tags["TagKey"] #=> String
resp.canary.artifact_config.s3_encryption.encryption_mode #=> String, one of "SSE_S3", "SSE_KMS"
resp.canary.artifact_config.s3_encryption.kms_key_arn #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :name (required, String)

    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].

    [1]: docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/servicelens_canaries_security.html

  • :code (required, Types::CanaryCodeInput)

    A structure that includes the entry point from which the canary should start running your script. If the script is stored in an S3 bucket, the bucket name, key, and version are also included.

  • :artifact_s3_location (required, 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 S3 bucket can’t include a period (.).

  • :execution_role_arn (required, 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:PutLogEvents`

  • :schedule (required, Types::CanaryScheduleInput)

    A structure that contains information about how often the canary is to run and when these test runs are to stop.

  • :run_config (Types::CanaryRunConfigInput)

    A structure that contains the configuration for individual canary runs, such as timeout value and environment variables.

    The environment variables keys and values are not encrypted. Do not store sensitive information in this field.

  • :success_retention_period_in_days (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.

  • :failure_retention_period_in_days (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.

  • :runtime_version (required, String)

    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].

    [1]: docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Canaries_Library.html

  • :vpc_config (Types::VpcConfigInput)

    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].

    [1]: docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Canaries_VPC.html

  • :tags (Hash<String,String>)

    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.

  • :artifact_config (Types::ArtifactConfigInput)

    A structure that contains the configuration for canary artifacts, including the encryption-at-rest settings for artifacts that the canary uploads to Amazon S3.

Returns:

See Also:



659
660
661
662
# File 'lib/aws-sdk-synthetics/client.rb', line 659

def create_canary(params = {}, options = {})
  req = build_request(:create_canary, params)
  req.send_request(options)
end

#create_group(params = {}) ⇒ Types::CreateGroupResponse

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.

[1]: docs.aws.amazon.com/general/latest/gr/rande-manage.html#rande-manage-enable

Examples:

Request syntax with placeholder values


resp = client.create_group({
  name: "GroupName", # required
  tags: {
    "TagKey" => "TagValue",
  },
})

Response structure


resp.group.id #=> String
resp.group.name #=> String
resp.group.arn #=> String
resp.group.tags #=> Hash
resp.group.tags["TagKey"] #=> String
resp.group.created_time #=> Time
resp.group.last_modified_time #=> Time

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :name (required, String)

    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 (Hash<String,String>)

    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.

Returns:

See Also:



730
731
732
733
# File 'lib/aws-sdk-synthetics/client.rb', line 730

def create_group(params = {}, options = {})
  req = build_request(:create_group, params)
  req.send_request(options)
end

#delete_canary(params = {}) ⇒ Struct

Permanently deletes the specified canary.

If you specify ‘DeleteLambda` to `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 that you do not intend to use again, you should also delete the following:

  • The CloudWatch alarms created for this canary. These alarms have a name of ‘Synthetics-SharpDrop-Alarm-MyCanaryName `.

  • 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-MyCanaryName `.

  • CloudWatch Logs log groups created for the canary. These logs groups have the name ‘/aws/lambda/cwsyn-MyCanaryName `.

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.

Examples:

Request syntax with placeholder values


resp = client.delete_canary({
  name: "CanaryName", # required
  delete_lambda: false,
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

Returns:

  • (Struct)

    Returns an empty response.

See Also:



789
790
791
792
# File 'lib/aws-sdk-synthetics/client.rb', line 789

def delete_canary(params = {}, options = {})
  req = build_request(:delete_canary, params)
  req.send_request(options)
end

#delete_group(params = {}) ⇒ Struct

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.

Examples:

Request syntax with placeholder values


resp = client.delete_group({
  group_identifier: "GroupIdentifier", # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :group_identifier (required, String)

    Specifies which group to delete. You can specify the group name, the ARN, or the group ID as the ‘GroupIdentifier`.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



818
819
820
821
# File 'lib/aws-sdk-synthetics/client.rb', line 818

def delete_group(params = {}, options = {})
  req = build_request(:delete_group, params)
  req.send_request(options)
end

#describe_canaries(params = {}) ⇒ Types::DescribeCanariesResponse

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].

[1]: docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Canaries_Restricted.html

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.describe_canaries({
  next_token: "Token",
  max_results: 1,
  names: ["CanaryName"],
})

Response structure


resp.canaries #=> Array
resp.canaries[0].id #=> String
resp.canaries[0].name #=> String
resp.canaries[0].code.source_location_arn #=> String
resp.canaries[0].code.handler #=> String
resp.canaries[0].execution_role_arn #=> String
resp.canaries[0].schedule.expression #=> String
resp.canaries[0].schedule.duration_in_seconds #=> Integer
resp.canaries[0].run_config.timeout_in_seconds #=> Integer
resp.canaries[0].run_config.memory_in_mb #=> Integer
resp.canaries[0].run_config.active_tracing #=> Boolean
resp.canaries[0].success_retention_period_in_days #=> Integer
resp.canaries[0].failure_retention_period_in_days #=> Integer
resp.canaries[0].status.state #=> String, one of "CREATING", "READY", "STARTING", "RUNNING", "UPDATING", "STOPPING", "STOPPED", "ERROR", "DELETING"
resp.canaries[0].status.state_reason #=> String
resp.canaries[0].status.state_reason_code #=> String, one of "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"
resp.canaries[0].timeline.created #=> Time
resp.canaries[0].timeline.last_modified #=> Time
resp.canaries[0].timeline.last_started #=> Time
resp.canaries[0].timeline.last_stopped #=> Time
resp.canaries[0].artifact_s3_location #=> String
resp.canaries[0].engine_arn #=> String
resp.canaries[0].runtime_version #=> String
resp.canaries[0].vpc_config.vpc_id #=> String
resp.canaries[0].vpc_config.subnet_ids #=> Array
resp.canaries[0].vpc_config.subnet_ids[0] #=> String
resp.canaries[0].vpc_config.security_group_ids #=> Array
resp.canaries[0].vpc_config.security_group_ids[0] #=> String
resp.canaries[0].visual_reference.base_screenshots #=> Array
resp.canaries[0].visual_reference.base_screenshots[0].screenshot_name #=> String
resp.canaries[0].visual_reference.base_screenshots[0].ignore_coordinates #=> Array
resp.canaries[0].visual_reference.base_screenshots[0].ignore_coordinates[0] #=> String
resp.canaries[0].visual_reference.base_canary_run_id #=> String
resp.canaries[0].tags #=> Hash
resp.canaries[0].tags["TagKey"] #=> String
resp.canaries[0].artifact_config.s3_encryption.encryption_mode #=> String, one of "SSE_S3", "SSE_KMS"
resp.canaries[0].artifact_config.s3_encryption.kms_key_arn #=> String
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :next_token (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.

  • :max_results (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 100 is used.

  • :names (Array<String>)

    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].

    [1]: docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Canaries_Restricted.html

Returns:

See Also:



930
931
932
933
# File 'lib/aws-sdk-synthetics/client.rb', line 930

def describe_canaries(params = {}, options = {})
  req = build_request(:describe_canaries, params)
  req.send_request(options)
end

#describe_canaries_last_run(params = {}) ⇒ Types::DescribeCanariesLastRunResponse

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].

[1]: docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Canaries_Restricted.html

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.describe_canaries_last_run({
  next_token: "Token",
  max_results: 1,
  names: ["CanaryName"],
})

Response structure


resp.canaries_last_run #=> Array
resp.canaries_last_run[0].canary_name #=> String
resp.canaries_last_run[0].last_run.id #=> String
resp.canaries_last_run[0].last_run.name #=> String
resp.canaries_last_run[0].last_run.status.state #=> String, one of "RUNNING", "PASSED", "FAILED"
resp.canaries_last_run[0].last_run.status.state_reason #=> String
resp.canaries_last_run[0].last_run.status.state_reason_code #=> String, one of "CANARY_FAILURE", "EXECUTION_FAILURE"
resp.canaries_last_run[0].last_run.timeline.started #=> Time
resp.canaries_last_run[0].last_run.timeline.completed #=> Time
resp.canaries_last_run[0].last_run.artifact_s3_location #=> String
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :next_token (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.

  • :max_results (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 (Array<String>)

    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].

    [1]: docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Canaries_Restricted.html

Returns:

See Also:



1015
1016
1017
1018
# File 'lib/aws-sdk-synthetics/client.rb', line 1015

def describe_canaries_last_run(params = {}, options = {})
  req = build_request(:describe_canaries_last_run, params)
  req.send_request(options)
end

#describe_runtime_versions(params = {}) ⇒ Types::DescribeRuntimeVersionsResponse

Returns a list of Synthetics canary runtime versions. For more information, see [ Canary Runtime Versions].

[1]: docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/CloudWatch_Synthetics_Canaries_Library.html

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.describe_runtime_versions({
  next_token: "Token",
  max_results: 1,
})

Response structure


resp.runtime_versions #=> Array
resp.runtime_versions[0].version_name #=> String
resp.runtime_versions[0].description #=> String
resp.runtime_versions[0].release_date #=> Time
resp.runtime_versions[0].deprecation_date #=> Time
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :next_token (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.

  • :max_results (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.

Returns:

See Also:



1064
1065
1066
1067
# File 'lib/aws-sdk-synthetics/client.rb', line 1064

def describe_runtime_versions(params = {}, options = {})
  req = build_request(:describe_runtime_versions, params)
  req.send_request(options)
end

#disassociate_resource(params = {}) ⇒ Struct

Removes a canary from a group. You must run this operation in the Region where the canary exists.

Examples:

Request syntax with placeholder values


resp = client.disassociate_resource({
  group_identifier: "GroupIdentifier", # required
  resource_arn: "CanaryArn", # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :group_identifier (required, String)

    Specifies the group. You can specify the group name, the ARN, or the group ID as the ‘GroupIdentifier`.

  • :resource_arn (required, String)

    The ARN of the canary that you want to remove from the specified group.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



1093
1094
1095
1096
# File 'lib/aws-sdk-synthetics/client.rb', line 1093

def disassociate_resource(params = {}, options = {})
  req = build_request(:disassociate_resource, params)
  req.send_request(options)
end

#get_canary(params = {}) ⇒ Types::GetCanaryResponse

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].

[1]: docs.aws.amazon.com/AmazonSynthetics/latest/APIReference/API_DescribeCanaries.html

Examples:

Request syntax with placeholder values


resp = client.get_canary({
  name: "CanaryName", # required
})

Response structure


resp.canary.id #=> String
resp.canary.name #=> String
resp.canary.code.source_location_arn #=> String
resp.canary.code.handler #=> String
resp.canary.execution_role_arn #=> String
resp.canary.schedule.expression #=> String
resp.canary.schedule.duration_in_seconds #=> Integer
resp.canary.run_config.timeout_in_seconds #=> Integer
resp.canary.run_config.memory_in_mb #=> Integer
resp.canary.run_config.active_tracing #=> Boolean
resp.canary.success_retention_period_in_days #=> Integer
resp.canary.failure_retention_period_in_days #=> Integer
resp.canary.status.state #=> String, one of "CREATING", "READY", "STARTING", "RUNNING", "UPDATING", "STOPPING", "STOPPED", "ERROR", "DELETING"
resp.canary.status.state_reason #=> String
resp.canary.status.state_reason_code #=> String, one of "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"
resp.canary.timeline.created #=> Time
resp.canary.timeline.last_modified #=> Time
resp.canary.timeline.last_started #=> Time
resp.canary.timeline.last_stopped #=> Time
resp.canary.artifact_s3_location #=> String
resp.canary.engine_arn #=> String
resp.canary.runtime_version #=> String
resp.canary.vpc_config.vpc_id #=> String
resp.canary.vpc_config.subnet_ids #=> Array
resp.canary.vpc_config.subnet_ids[0] #=> String
resp.canary.vpc_config.security_group_ids #=> Array
resp.canary.vpc_config.security_group_ids[0] #=> String
resp.canary.visual_reference.base_screenshots #=> Array
resp.canary.visual_reference.base_screenshots[0].screenshot_name #=> String
resp.canary.visual_reference.base_screenshots[0].ignore_coordinates #=> Array
resp.canary.visual_reference.base_screenshots[0].ignore_coordinates[0] #=> String
resp.canary.visual_reference.base_canary_run_id #=> String
resp.canary.tags #=> Hash
resp.canary.tags["TagKey"] #=> String
resp.canary.artifact_config.s3_encryption.encryption_mode #=> String, one of "SSE_S3", "SSE_KMS"
resp.canary.artifact_config.s3_encryption.kms_key_arn #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :name (required, String)

    The name of the canary that you want details for.

Returns:

See Also:



1162
1163
1164
1165
# File 'lib/aws-sdk-synthetics/client.rb', line 1162

def get_canary(params = {}, options = {})
  req = build_request(:get_canary, params)
  req.send_request(options)
end

#get_canary_runs(params = {}) ⇒ Types::GetCanaryRunsResponse

Retrieves a list of runs for a specified canary.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.get_canary_runs({
  name: "CanaryName", # required
  next_token: "Token",
  max_results: 1,
})

Response structure


resp.canary_runs #=> Array
resp.canary_runs[0].id #=> String
resp.canary_runs[0].name #=> String
resp.canary_runs[0].status.state #=> String, one of "RUNNING", "PASSED", "FAILED"
resp.canary_runs[0].status.state_reason #=> String
resp.canary_runs[0].status.state_reason_code #=> String, one of "CANARY_FAILURE", "EXECUTION_FAILURE"
resp.canary_runs[0].timeline.started #=> Time
resp.canary_runs[0].timeline.completed #=> Time
resp.canary_runs[0].artifact_s3_location #=> String
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :name (required, String)

    The name of the canary that you want to see runs for.

  • :next_token (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.

  • :max_results (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.

Returns:

See Also:



1214
1215
1216
1217
# File 'lib/aws-sdk-synthetics/client.rb', line 1214

def get_canary_runs(params = {}, options = {})
  req = build_request(:get_canary_runs, params)
  req.send_request(options)
end

#get_group(params = {}) ⇒ Types::GetGroupResponse

Returns information about one group. Groups are a global resource, so you can use this operation from any Region.

Examples:

Request syntax with placeholder values


resp = client.get_group({
  group_identifier: "GroupIdentifier", # required
})

Response structure


resp.group.id #=> String
resp.group.name #=> String
resp.group.arn #=> String
resp.group.tags #=> Hash
resp.group.tags["TagKey"] #=> String
resp.group.created_time #=> Time
resp.group.last_modified_time #=> Time

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :group_identifier (required, String)

    Specifies the group to return information for. You can specify the group name, the ARN, or the group ID as the ‘GroupIdentifier`.

Returns:

See Also:



1250
1251
1252
1253
# File 'lib/aws-sdk-synthetics/client.rb', line 1250

def get_group(params = {}, options = {})
  req = build_request(:get_group, params)
  req.send_request(options)
end

#list_associated_groups(params = {}) ⇒ Types::ListAssociatedGroupsResponse

Returns a list of the groups that the specified canary is associated with. The canary that you specify must be in the current Region.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_associated_groups({
  next_token: "PaginationToken",
  max_results: 1,
  resource_arn: "CanaryArn", # required
})

Response structure


resp.groups #=> Array
resp.groups[0].id #=> String
resp.groups[0].name #=> String
resp.groups[0].arn #=> String
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :next_token (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.

  • :max_results (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.

  • :resource_arn (required, String)

    The ARN of the canary that you want to view groups for.

Returns:

See Also:



1298
1299
1300
1301
# File 'lib/aws-sdk-synthetics/client.rb', line 1298

def list_associated_groups(params = {}, options = {})
  req = build_request(:list_associated_groups, params)
  req.send_request(options)
end

#list_group_resources(params = {}) ⇒ Types::ListGroupResourcesResponse

This operation returns a list of the ARNs of the canaries that are associated with the specified group.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_group_resources({
  next_token: "PaginationToken",
  max_results: 1,
  group_identifier: "GroupIdentifier", # required
})

Response structure


resp.resources #=> Array
resp.resources[0] #=> String
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :next_token (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.

  • :max_results (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.

  • :group_identifier (required, String)

    Specifies the group to return information for. You can specify the group name, the ARN, or the group ID as the ‘GroupIdentifier`.

Returns:

See Also:



1345
1346
1347
1348
# File 'lib/aws-sdk-synthetics/client.rb', line 1345

def list_group_resources(params = {}, options = {})
  req = build_request(:list_group_resources, params)
  req.send_request(options)
end

#list_groups(params = {}) ⇒ Types::ListGroupsResponse

Returns a list of all groups in the account, displaying their names, unique IDs, and ARNs. The groups from all Regions are returned.

The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.

Examples:

Request syntax with placeholder values


resp = client.list_groups({
  next_token: "PaginationToken",
  max_results: 1,
})

Response structure


resp.groups #=> Array
resp.groups[0].id #=> String
resp.groups[0].name #=> String
resp.groups[0].arn #=> String
resp.next_token #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :next_token (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.

  • :max_results (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.

Returns:

See Also:



1389
1390
1391
1392
# File 'lib/aws-sdk-synthetics/client.rb', line 1389

def list_groups(params = {}, options = {})
  req = build_request(:list_groups, params)
  req.send_request(options)
end

#list_tags_for_resource(params = {}) ⇒ Types::ListTagsForResourceResponse

Displays the tags associated with a canary or group.

Examples:

Request syntax with placeholder values


resp = client.list_tags_for_resource({
  resource_arn: "ResourceArn", # required
})

Response structure


resp.tags #=> Hash
resp.tags["TagKey"] #=> String

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :resource_arn (required, String)

    The ARN of the canary or group that you want to view tags for.

    The ARN format of a canary is ‘arn:aws:synthetics:Region:account-id:canary:canary-name `.

    The ARN format of a group is ‘arn:aws:synthetics:Region:account-id:group:group-name `

Returns:

See Also:



1424
1425
1426
1427
# File 'lib/aws-sdk-synthetics/client.rb', line 1424

def list_tags_for_resource(params = {}, options = {})
  req = build_request(:list_tags_for_resource, params)
  req.send_request(options)
end

#start_canary(params = {}) ⇒ Struct

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].

[1]: docs.aws.amazon.com/AmazonSynthetics/latest/APIReference/API_GetCanary.html

Examples:

Request syntax with placeholder values


resp = client.start_canary({
  name: "CanaryName", # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

Returns:

  • (Struct)

    Returns an empty response.

See Also:



1457
1458
1459
1460
# File 'lib/aws-sdk-synthetics/client.rb', line 1457

def start_canary(params = {}, options = {})
  req = build_request(:start_canary, params)
  req.send_request(options)
end

#stop_canary(params = {}) ⇒ Struct

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.

Examples:

Request syntax with placeholder values


resp = client.stop_canary({
  name: "CanaryName", # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

Returns:

  • (Struct)

    Returns an empty response.

See Also:



1490
1491
1492
1493
# File 'lib/aws-sdk-synthetics/client.rb', line 1490

def stop_canary(params = {}, options = {})
  req = build_request(:stop_canary, params)
  req.send_request(options)
end

#tag_resource(params = {}) ⇒ Struct

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.

Examples:

Request syntax with placeholder values


resp = client.tag_resource({
  resource_arn: "ResourceArn", # required
  tags: { # required
    "TagKey" => "TagValue",
  },
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :resource_arn (required, String)

    The ARN of the canary or group that you’re adding tags to.

    The ARN format of a canary is ‘arn:aws:synthetics:Region:account-id:canary:canary-name `.

    The ARN format of a group is ‘arn:aws:synthetics:Region:account-id:group:group-name `

  • :tags (required, Hash<String,String>)

    The list of key-value pairs to associate with the resource.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



1541
1542
1543
1544
# File 'lib/aws-sdk-synthetics/client.rb', line 1541

def tag_resource(params = {}, options = {})
  req = build_request(:tag_resource, params)
  req.send_request(options)
end

#untag_resource(params = {}) ⇒ Struct

Removes one or more tags from the specified resource.

Examples:

Request syntax with placeholder values


resp = client.untag_resource({
  resource_arn: "ResourceArn", # required
  tag_keys: ["TagKey"], # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :resource_arn (required, String)

    The ARN of the canary or group that you’re removing tags from.

    The ARN format of a canary is ‘arn:aws:synthetics:Region:account-id:canary:canary-name `.

    The ARN format of a group is ‘arn:aws:synthetics:Region:account-id:group:group-name `

  • :tag_keys (required, Array<String>)

    The list of tag keys to remove from the resource.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



1573
1574
1575
1576
# File 'lib/aws-sdk-synthetics/client.rb', line 1573

def untag_resource(params = {}, options = {})
  req = build_request(:untag_resource, params)
  req.send_request(options)
end

#update_canary(params = {}) ⇒ Struct

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].

[1]: docs.aws.amazon.com/AmazonSynthetics/latest/APIReference/API_TagResource.html

Examples:

Request syntax with placeholder values


resp = client.update_canary({
  name: "CanaryName", # required
  code: {
    s3_bucket: "String",
    s3_key: "String",
    s3_version: "String",
    zip_file: "data",
    handler: "CodeHandler", # required
  },
  execution_role_arn: "RoleArn",
  runtime_version: "String",
  schedule: {
    expression: "String", # required
    duration_in_seconds: 1,
  },
  run_config: {
    timeout_in_seconds: 1,
    memory_in_mb: 1,
    active_tracing: false,
    environment_variables: {
      "EnvironmentVariableName" => "EnvironmentVariableValue",
    },
  },
  success_retention_period_in_days: 1,
  failure_retention_period_in_days: 1,
  vpc_config: {
    subnet_ids: ["SubnetId"],
    security_group_ids: ["SecurityGroupId"],
  },
  visual_reference: {
    base_screenshots: [
      {
        screenshot_name: "String", # required
        ignore_coordinates: ["BaseScreenshotConfigIgnoreCoordinate"],
      },
    ],
    base_canary_run_id: "String", # required
  },
  artifact_s3_location: "String",
  artifact_config: {
    s3_encryption: {
      encryption_mode: "SSE_S3", # accepts SSE_S3, SSE_KMS
      kms_key_arn: "KmsKeyArn",
    },
  },
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

Returns:

  • (Struct)

    Returns an empty response.

See Also:



1739
1740
1741
1742
# File 'lib/aws-sdk-synthetics/client.rb', line 1739

def update_canary(params = {}, options = {})
  req = build_request(:update_canary, params)
  req.send_request(options)
end

#waiter_namesObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Deprecated.


1763
1764
1765
# File 'lib/aws-sdk-synthetics/client.rb', line 1763

def waiter_names
  []
end