AWS Fault Injection Simulator

2023/11/27 - AWS Fault Injection Simulator - 8 new 7 updated api methods

Changes  AWS FIS adds support for multi-account experiments & empty target resolution. This release also introduces the CreateTargetAccountConfiguration API that allows experiments across multiple AWS accounts, and the ListExperimentResolvedTargets API to list target details.

UpdateTargetAccountConfiguration (new) Link ¶

Updates the target account configuration for the specified experiment template.

See also: AWS API Documentation

Request Syntax

client.update_target_account_configuration(
    experimentTemplateId='string',
    accountId='string',
    roleArn='string',
    description='string'
)
type experimentTemplateId

string

param experimentTemplateId

[REQUIRED]

The ID of the experiment template.

type accountId

string

param accountId

[REQUIRED]

The AWS account ID of the target account.

type roleArn

string

param roleArn

The Amazon Resource Name (ARN) of an IAM role for the target account.

type description

string

param description

The description of the target account.

rtype

dict

returns

Response Syntax

{
    'targetAccountConfiguration': {
        'roleArn': 'string',
        'accountId': 'string',
        'description': 'string'
    }
}

Response Structure

  • (dict) --

    • targetAccountConfiguration (dict) --

      Information about the target account configuration.

      • roleArn (string) --

        The Amazon Resource Name (ARN) of an IAM role for the target account.

      • accountId (string) --

        The AWS account ID of the target account.

      • description (string) --

        The description of the target account.

CreateTargetAccountConfiguration (new) Link ¶

Creates a target account configuration for the experiment template. A target account configuration is required when accountTargeting of experimentOptions is set to multi-account . For more information, see experiment options in the Fault Injection Simulator User Guide .

See also: AWS API Documentation

Request Syntax

client.create_target_account_configuration(
    clientToken='string',
    experimentTemplateId='string',
    accountId='string',
    roleArn='string',
    description='string'
)
type clientToken

string

param clientToken

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

This field is autopopulated if not provided.

type experimentTemplateId

string

param experimentTemplateId

[REQUIRED]

The experiment template ID.

type accountId

string

param accountId

[REQUIRED]

The AWS account ID of the target account.

type roleArn

string

param roleArn

[REQUIRED]

The Amazon Resource Name (ARN) of an IAM role for the target account.

type description

string

param description

The description of the target account.

rtype

dict

returns

Response Syntax

{
    'targetAccountConfiguration': {
        'roleArn': 'string',
        'accountId': 'string',
        'description': 'string'
    }
}

Response Structure

  • (dict) --

    • targetAccountConfiguration (dict) --

      Information about the target account configuration.

      • roleArn (string) --

        The Amazon Resource Name (ARN) of an IAM role for the target account.

      • accountId (string) --

        The AWS account ID of the target account.

      • description (string) --

        The description of the target account.

ListExperimentResolvedTargets (new) Link ¶

Lists the resolved targets information of the specified experiment.

See also: AWS API Documentation

Request Syntax

client.list_experiment_resolved_targets(
    experimentId='string',
    maxResults=123,
    nextToken='string',
    targetName='string'
)
type experimentId

string

param experimentId

[REQUIRED]

The ID of the experiment.

type maxResults

integer

param maxResults

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

type nextToken

string

param nextToken

The token for the next page of results.

type targetName

string

param targetName

The name of the target.

rtype

dict

returns

Response Syntax

{
    'resolvedTargets': [
        {
            'resourceType': 'string',
            'targetName': 'string',
            'targetInformation': {
                'string': 'string'
            }
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    • resolvedTargets (list) --

      The resolved targets.

      • (dict) --

        Describes a resolved target.

        • resourceType (string) --

          The resource type of the target.

        • targetName (string) --

          The name of the target.

        • targetInformation (dict) --

          Information about the target.

          • (string) --

            • (string) --

    • nextToken (string) --

      The token to use to retrieve the next page of results. This value is null when there are no more results to return.

GetTargetAccountConfiguration (new) Link ¶

Gets information about the specified target account configuration of the experiment template.

See also: AWS API Documentation

Request Syntax

client.get_target_account_configuration(
    experimentTemplateId='string',
    accountId='string'
)
type experimentTemplateId

string

param experimentTemplateId

[REQUIRED]

The ID of the experiment template.

type accountId

string

param accountId

[REQUIRED]

The AWS account ID of the target account.

rtype

dict

returns

Response Syntax

{
    'targetAccountConfiguration': {
        'roleArn': 'string',
        'accountId': 'string',
        'description': 'string'
    }
}

Response Structure

  • (dict) --

    • targetAccountConfiguration (dict) --

      Information about the target account configuration.

      • roleArn (string) --

        The Amazon Resource Name (ARN) of an IAM role for the target account.

      • accountId (string) --

        The AWS account ID of the target account.

      • description (string) --

        The description of the target account.

ListTargetAccountConfigurations (new) Link ¶

Lists the target account configurations of the specified experiment template.

See also: AWS API Documentation

Request Syntax

client.list_target_account_configurations(
    experimentTemplateId='string',
    maxResults=123,
    nextToken='string'
)
type experimentTemplateId

string

param experimentTemplateId

[REQUIRED]

The ID of the experiment template.

type maxResults

integer

param maxResults

The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.

type nextToken

string

param nextToken

The token for the next page of results.

rtype

dict

returns

Response Syntax

{
    'targetAccountConfigurations': [
        {
            'roleArn': 'string',
            'accountId': 'string',
            'description': 'string'
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    • targetAccountConfigurations (list) --

      The target account configurations.

      • (dict) --

        Provides a summary of a target account configuration.

        • roleArn (string) --

          The Amazon Resource Name (ARN) of an IAM role for the target account.

        • accountId (string) --

          The AWS account ID of the target account.

        • description (string) --

          The description of the target account.

    • nextToken (string) --

      The token to use to retrieve the next page of results. This value is null when there are no more results to return.

GetExperimentTargetAccountConfiguration (new) Link ¶

Gets information about the specified target account configuration of the experiment.

See also: AWS API Documentation

Request Syntax

client.get_experiment_target_account_configuration(
    experimentId='string',
    accountId='string'
)
type experimentId

string

param experimentId

[REQUIRED]

The ID of the experiment.

type accountId

string

param accountId

[REQUIRED]

The AWS account ID of the target account.

rtype

dict

returns

Response Syntax

{
    'targetAccountConfiguration': {
        'roleArn': 'string',
        'accountId': 'string',
        'description': 'string'
    }
}

Response Structure

  • (dict) --

    • targetAccountConfiguration (dict) --

      Information about the target account configuration.

      • roleArn (string) --

        The Amazon Resource Name (ARN) of an IAM role for the target account.

      • accountId (string) --

        The AWS account ID of the target account.

      • description (string) --

        The description of the target account.

DeleteTargetAccountConfiguration (new) Link ¶

Deletes the specified target account configuration of the experiment template.

See also: AWS API Documentation

Request Syntax

client.delete_target_account_configuration(
    experimentTemplateId='string',
    accountId='string'
)
type experimentTemplateId

string

param experimentTemplateId

[REQUIRED]

The ID of the experiment template.

type accountId

string

param accountId

[REQUIRED]

The AWS account ID of the target account.

rtype

dict

returns

Response Syntax

{
    'targetAccountConfiguration': {
        'roleArn': 'string',
        'accountId': 'string',
        'description': 'string'
    }
}

Response Structure

  • (dict) --

    • targetAccountConfiguration (dict) --

      Information about the target account configuration.

      • roleArn (string) --

        The Amazon Resource Name (ARN) of an IAM role for the target account.

      • accountId (string) --

        The AWS account ID of the target account.

      • description (string) --

        The description of the target account.

ListExperimentTargetAccountConfigurations (new) Link ¶

Lists the target account configurations of the specified experiment.

See also: AWS API Documentation

Request Syntax

client.list_experiment_target_account_configurations(
    experimentId='string',
    nextToken='string'
)
type experimentId

string

param experimentId

[REQUIRED]

The ID of the experiment.

type nextToken

string

param nextToken

The token for the next page of results.

rtype

dict

returns

Response Syntax

{
    'targetAccountConfigurations': [
        {
            'roleArn': 'string',
            'accountId': 'string',
            'description': 'string'
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    • targetAccountConfigurations (list) --

      The target account configurations.

      • (dict) --

        Provides a summary of a target account configuration.

        • roleArn (string) --

          The Amazon Resource Name (ARN) of an IAM role for the target account.

        • accountId (string) --

          The AWS account ID of the target account.

        • description (string) --

          The description of the target account.

    • nextToken (string) --

      The token to use to retrieve the next page of results. This value is null when there are no more results to return.

CreateExperimentTemplate (updated) Link ¶
Changes (request, response)
Request
{'experimentOptions': {'accountTargeting': 'single-account | multi-account',
                       'emptyTargetResolutionMode': 'fail | skip'}}
Response
{'experimentTemplate': {'experimentOptions': {'accountTargeting': 'single-account '
                                                                  '| '
                                                                  'multi-account',
                                              'emptyTargetResolutionMode': 'fail '
                                                                           '| '
                                                                           'skip'},
                        'targetAccountConfigurationsCount': 'long'}}

Creates an experiment template.

An experiment template includes the following components:

  • Targets : A target can be a specific resource in your Amazon Web Services environment, or one or more resources that match criteria that you specify, for example, resources that have specific tags.

  • Actions : The actions to carry out on the target. You can specify multiple actions, the duration of each action, and when to start each action during an experiment.

  • Stop conditions : If a stop condition is triggered while an experiment is running, the experiment is automatically stopped. You can define a stop condition as a CloudWatch alarm.

For more information, see experiment templates in the Fault Injection Simulator User Guide .

See also: AWS API Documentation

Request Syntax

client.create_experiment_template(
    clientToken='string',
    description='string',
    stopConditions=[
        {
            'source': 'string',
            'value': 'string'
        },
    ],
    targets={
        'string': {
            'resourceType': 'string',
            'resourceArns': [
                'string',
            ],
            'resourceTags': {
                'string': 'string'
            },
            'filters': [
                {
                    'path': 'string',
                    'values': [
                        'string',
                    ]
                },
            ],
            'selectionMode': 'string',
            'parameters': {
                'string': 'string'
            }
        }
    },
    actions={
        'string': {
            'actionId': 'string',
            'description': 'string',
            'parameters': {
                'string': 'string'
            },
            'targets': {
                'string': 'string'
            },
            'startAfter': [
                'string',
            ]
        }
    },
    roleArn='string',
    tags={
        'string': 'string'
    },
    logConfiguration={
        'cloudWatchLogsConfiguration': {
            'logGroupArn': 'string'
        },
        's3Configuration': {
            'bucketName': 'string',
            'prefix': 'string'
        },
        'logSchemaVersion': 123
    },
    experimentOptions={
        'accountTargeting': 'single-account'|'multi-account',
        'emptyTargetResolutionMode': 'fail'|'skip'
    }
)
type clientToken

string

param clientToken

[REQUIRED]

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

This field is autopopulated if not provided.

type description

string

param description

[REQUIRED]

A description for the experiment template.

type stopConditions

list

param stopConditions

[REQUIRED]

The stop conditions.

  • (dict) --

    Specifies a stop condition for an experiment template.

    • source (string) -- [REQUIRED]

      The source for the stop condition. Specify aws:cloudwatch:alarm if the stop condition is defined by a CloudWatch alarm. Specify none if there is no stop condition.

    • value (string) --

      The Amazon Resource Name (ARN) of the CloudWatch alarm. This is required if the source is a CloudWatch alarm.

type targets

dict

param targets

The targets for the experiment.

  • (string) --

    • (dict) --

      Specifies a target for an experiment. You must specify at least one Amazon Resource Name (ARN) or at least one resource tag. You cannot specify both ARNs and tags.

      For more information, see Targets in the Fault Injection Simulator User Guide .

      • resourceType (string) -- [REQUIRED]

        The resource type. The resource type must be supported for the specified action.

      • resourceArns (list) --

        The Amazon Resource Names (ARNs) of the resources.

        • (string) --

      • resourceTags (dict) --

        The tags for the target resources.

        • (string) --

          • (string) --

      • filters (list) --

        The filters to apply to identify target resources using specific attributes.

        • (dict) --

          Specifies a filter used for the target resource input in an experiment template.

          For more information, see Resource filters in the Fault Injection Simulator User Guide .

          • path (string) -- [REQUIRED]

            The attribute path for the filter.

          • values (list) -- [REQUIRED]

            The attribute values for the filter.

            • (string) --

      • selectionMode (string) -- [REQUIRED]

        Scopes the identified resources to a specific count of the resources at random, or a percentage of the resources. All identified resources are included in the target.

        • ALL - Run the action on all identified targets. This is the default.

        • COUNT(n) - Run the action on the specified number of targets, chosen from the identified targets at random. For example, COUNT(1) selects one of the targets.

        • PERCENT(n) - Run the action on the specified percentage of targets, chosen from the identified targets at random. For example, PERCENT(25) selects 25% of the targets.

      • parameters (dict) --

        The resource type parameters.

        • (string) --

          • (string) --

type actions

dict

param actions

[REQUIRED]

The actions for the experiment.

  • (string) --

    • (dict) --

      Specifies an action for an experiment template.

      For more information, see Actions in the Fault Injection Simulator User Guide .

      • actionId (string) -- [REQUIRED]

        The ID of the action. The format of the action ID is: aws:service-name :action-type .

      • description (string) --

        A description for the action.

      • parameters (dict) --

        The parameters for the action, if applicable.

        • (string) --

          • (string) --

      • targets (dict) --

        The targets for the action.

        • (string) --

          • (string) --

      • startAfter (list) --

        The name of the action that must be completed before the current action starts. Omit this parameter to run the action at the start of the experiment.

        • (string) --

type roleArn

string

param roleArn

[REQUIRED]

The Amazon Resource Name (ARN) of an IAM role that grants the FIS service permission to perform service actions on your behalf.

type tags

dict

param tags

The tags to apply to the experiment template.

  • (string) --

    • (string) --

type logConfiguration

dict

param logConfiguration

The configuration for experiment logging.

  • cloudWatchLogsConfiguration (dict) --

    The configuration for experiment logging to Amazon CloudWatch Logs.

    • logGroupArn (string) -- [REQUIRED]

      The Amazon Resource Name (ARN) of the destination Amazon CloudWatch Logs log group.

  • s3Configuration (dict) --

    The configuration for experiment logging to Amazon S3.

    • bucketName (string) -- [REQUIRED]

      The name of the destination bucket.

    • prefix (string) --

      The bucket prefix.

  • logSchemaVersion (integer) -- [REQUIRED]

    The schema version.

type experimentOptions

dict

param experimentOptions

The experiment options for the experiment template.

  • accountTargeting (string) --

    Specifies the account targeting setting for experiment options.

  • emptyTargetResolutionMode (string) --

    Specifies the empty target resolution mode for experiment options.

rtype

dict

returns

Response Syntax

{
    'experimentTemplate': {
        'id': 'string',
        'description': 'string',
        'targets': {
            'string': {
                'resourceType': 'string',
                'resourceArns': [
                    'string',
                ],
                'resourceTags': {
                    'string': 'string'
                },
                'filters': [
                    {
                        'path': 'string',
                        'values': [
                            'string',
                        ]
                    },
                ],
                'selectionMode': 'string',
                'parameters': {
                    'string': 'string'
                }
            }
        },
        'actions': {
            'string': {
                'actionId': 'string',
                'description': 'string',
                'parameters': {
                    'string': 'string'
                },
                'targets': {
                    'string': 'string'
                },
                'startAfter': [
                    'string',
                ]
            }
        },
        'stopConditions': [
            {
                'source': 'string',
                'value': 'string'
            },
        ],
        'creationTime': datetime(2015, 1, 1),
        'lastUpdateTime': datetime(2015, 1, 1),
        'roleArn': 'string',
        'tags': {
            'string': 'string'
        },
        'logConfiguration': {
            'cloudWatchLogsConfiguration': {
                'logGroupArn': 'string'
            },
            's3Configuration': {
                'bucketName': 'string',
                'prefix': 'string'
            },
            'logSchemaVersion': 123
        },
        'experimentOptions': {
            'accountTargeting': 'single-account'|'multi-account',
            'emptyTargetResolutionMode': 'fail'|'skip'
        },
        'targetAccountConfigurationsCount': 123
    }
}

Response Structure

  • (dict) --

    • experimentTemplate (dict) --

      Information about the experiment template.

      • id (string) --

        The ID of the experiment template.

      • description (string) --

        The description for the experiment template.

      • targets (dict) --

        The targets for the experiment.

        • (string) --

          • (dict) --

            Describes a target for an experiment template.

            • resourceType (string) --

              The resource type.

            • resourceArns (list) --

              The Amazon Resource Names (ARNs) of the targets.

              • (string) --

            • resourceTags (dict) --

              The tags for the target resources.

              • (string) --

                • (string) --

            • filters (list) --

              The filters to apply to identify target resources using specific attributes.

              • (dict) --

                Describes a filter used for the target resources in an experiment template.

                • path (string) --

                  The attribute path for the filter.

                • values (list) --

                  The attribute values for the filter.

                  • (string) --

            • selectionMode (string) --

              Scopes the identified resources to a specific count or percentage.

            • parameters (dict) --

              The resource type parameters.

              • (string) --

                • (string) --

      • actions (dict) --

        The actions for the experiment.

        • (string) --

          • (dict) --

            Describes an action for an experiment template.

            • actionId (string) --

              The ID of the action.

            • description (string) --

              A description for the action.

            • parameters (dict) --

              The parameters for the action.

              • (string) --

                • (string) --

            • targets (dict) --

              The targets for the action.

              • (string) --

                • (string) --

            • startAfter (list) --

              The name of the action that must be completed before the current action starts.

              • (string) --

      • stopConditions (list) --

        The stop conditions for the experiment.

        • (dict) --

          Describes a stop condition for an experiment template.

          • source (string) --

            The source for the stop condition.

          • value (string) --

            The Amazon Resource Name (ARN) of the CloudWatch alarm, if applicable.

      • creationTime (datetime) --

        The time the experiment template was created.

      • lastUpdateTime (datetime) --

        The time the experiment template was last updated.

      • roleArn (string) --

        The Amazon Resource Name (ARN) of an IAM role.

      • tags (dict) --

        The tags for the experiment template.

        • (string) --

          • (string) --

      • logConfiguration (dict) --

        The configuration for experiment logging.

        • cloudWatchLogsConfiguration (dict) --

          The configuration for experiment logging to Amazon CloudWatch Logs.

          • logGroupArn (string) --

            The Amazon Resource Name (ARN) of the destination Amazon CloudWatch Logs log group.

        • s3Configuration (dict) --

          The configuration for experiment logging to Amazon S3.

          • bucketName (string) --

            The name of the destination bucket.

          • prefix (string) --

            The bucket prefix.

        • logSchemaVersion (integer) --

          The schema version.

      • experimentOptions (dict) --

        The experiment options for an experiment template.

        • accountTargeting (string) --

          The account targeting setting for an experiment template.

        • emptyTargetResolutionMode (string) --

          The empty target resolution mode for an experiment template.

      • targetAccountConfigurationsCount (integer) --

        The count of target account configurations for the experiment template.

DeleteExperimentTemplate (updated) Link ¶
Changes (response)
{'experimentTemplate': {'experimentOptions': {'accountTargeting': 'single-account '
                                                                  '| '
                                                                  'multi-account',
                                              'emptyTargetResolutionMode': 'fail '
                                                                           '| '
                                                                           'skip'},
                        'targetAccountConfigurationsCount': 'long'}}

Deletes the specified experiment template.

See also: AWS API Documentation

Request Syntax

client.delete_experiment_template(
    id='string'
)
type id

string

param id

[REQUIRED]

The ID of the experiment template.

rtype

dict

returns

Response Syntax

{
    'experimentTemplate': {
        'id': 'string',
        'description': 'string',
        'targets': {
            'string': {
                'resourceType': 'string',
                'resourceArns': [
                    'string',
                ],
                'resourceTags': {
                    'string': 'string'
                },
                'filters': [
                    {
                        'path': 'string',
                        'values': [
                            'string',
                        ]
                    },
                ],
                'selectionMode': 'string',
                'parameters': {
                    'string': 'string'
                }
            }
        },
        'actions': {
            'string': {
                'actionId': 'string',
                'description': 'string',
                'parameters': {
                    'string': 'string'
                },
                'targets': {
                    'string': 'string'
                },
                'startAfter': [
                    'string',
                ]
            }
        },
        'stopConditions': [
            {
                'source': 'string',
                'value': 'string'
            },
        ],
        'creationTime': datetime(2015, 1, 1),
        'lastUpdateTime': datetime(2015, 1, 1),
        'roleArn': 'string',
        'tags': {
            'string': 'string'
        },
        'logConfiguration': {
            'cloudWatchLogsConfiguration': {
                'logGroupArn': 'string'
            },
            's3Configuration': {
                'bucketName': 'string',
                'prefix': 'string'
            },
            'logSchemaVersion': 123
        },
        'experimentOptions': {
            'accountTargeting': 'single-account'|'multi-account',
            'emptyTargetResolutionMode': 'fail'|'skip'
        },
        'targetAccountConfigurationsCount': 123
    }
}

Response Structure

  • (dict) --

    • experimentTemplate (dict) --

      Information about the experiment template.

      • id (string) --

        The ID of the experiment template.

      • description (string) --

        The description for the experiment template.

      • targets (dict) --

        The targets for the experiment.

        • (string) --

          • (dict) --

            Describes a target for an experiment template.

            • resourceType (string) --

              The resource type.

            • resourceArns (list) --

              The Amazon Resource Names (ARNs) of the targets.

              • (string) --

            • resourceTags (dict) --

              The tags for the target resources.

              • (string) --

                • (string) --

            • filters (list) --

              The filters to apply to identify target resources using specific attributes.

              • (dict) --

                Describes a filter used for the target resources in an experiment template.

                • path (string) --

                  The attribute path for the filter.

                • values (list) --

                  The attribute values for the filter.

                  • (string) --

            • selectionMode (string) --

              Scopes the identified resources to a specific count or percentage.

            • parameters (dict) --

              The resource type parameters.

              • (string) --

                • (string) --

      • actions (dict) --

        The actions for the experiment.

        • (string) --

          • (dict) --

            Describes an action for an experiment template.

            • actionId (string) --

              The ID of the action.

            • description (string) --

              A description for the action.

            • parameters (dict) --

              The parameters for the action.

              • (string) --

                • (string) --

            • targets (dict) --

              The targets for the action.

              • (string) --

                • (string) --

            • startAfter (list) --

              The name of the action that must be completed before the current action starts.

              • (string) --

      • stopConditions (list) --

        The stop conditions for the experiment.

        • (dict) --

          Describes a stop condition for an experiment template.

          • source (string) --

            The source for the stop condition.

          • value (string) --

            The Amazon Resource Name (ARN) of the CloudWatch alarm, if applicable.

      • creationTime (datetime) --

        The time the experiment template was created.

      • lastUpdateTime (datetime) --

        The time the experiment template was last updated.

      • roleArn (string) --

        The Amazon Resource Name (ARN) of an IAM role.

      • tags (dict) --

        The tags for the experiment template.

        • (string) --

          • (string) --

      • logConfiguration (dict) --

        The configuration for experiment logging.

        • cloudWatchLogsConfiguration (dict) --

          The configuration for experiment logging to Amazon CloudWatch Logs.

          • logGroupArn (string) --

            The Amazon Resource Name (ARN) of the destination Amazon CloudWatch Logs log group.

        • s3Configuration (dict) --

          The configuration for experiment logging to Amazon S3.

          • bucketName (string) --

            The name of the destination bucket.

          • prefix (string) --

            The bucket prefix.

        • logSchemaVersion (integer) --

          The schema version.

      • experimentOptions (dict) --

        The experiment options for an experiment template.

        • accountTargeting (string) --

          The account targeting setting for an experiment template.

        • emptyTargetResolutionMode (string) --

          The empty target resolution mode for an experiment template.

      • targetAccountConfigurationsCount (integer) --

        The count of target account configurations for the experiment template.

GetExperiment (updated) Link ¶
Changes (response)
{'experiment': {'actions': {'state': {'status': {'skipped'}}},
                'experimentOptions': {'accountTargeting': 'single-account | '
                                                          'multi-account',
                                      'emptyTargetResolutionMode': 'fail | '
                                                                   'skip'},
                'targetAccountConfigurationsCount': 'long'}}

Gets information about the specified experiment.

See also: AWS API Documentation

Request Syntax

client.get_experiment(
    id='string'
)
type id

string

param id

[REQUIRED]

The ID of the experiment.

rtype

dict

returns

Response Syntax

{
    'experiment': {
        'id': 'string',
        'experimentTemplateId': 'string',
        'roleArn': 'string',
        'state': {
            'status': 'pending'|'initiating'|'running'|'completed'|'stopping'|'stopped'|'failed',
            'reason': 'string'
        },
        'targets': {
            'string': {
                'resourceType': 'string',
                'resourceArns': [
                    'string',
                ],
                'resourceTags': {
                    'string': 'string'
                },
                'filters': [
                    {
                        'path': 'string',
                        'values': [
                            'string',
                        ]
                    },
                ],
                'selectionMode': 'string',
                'parameters': {
                    'string': 'string'
                }
            }
        },
        'actions': {
            'string': {
                'actionId': 'string',
                'description': 'string',
                'parameters': {
                    'string': 'string'
                },
                'targets': {
                    'string': 'string'
                },
                'startAfter': [
                    'string',
                ],
                'state': {
                    'status': 'pending'|'initiating'|'running'|'completed'|'cancelled'|'stopping'|'stopped'|'failed'|'skipped',
                    'reason': 'string'
                },
                'startTime': datetime(2015, 1, 1),
                'endTime': datetime(2015, 1, 1)
            }
        },
        'stopConditions': [
            {
                'source': 'string',
                'value': 'string'
            },
        ],
        'creationTime': datetime(2015, 1, 1),
        'startTime': datetime(2015, 1, 1),
        'endTime': datetime(2015, 1, 1),
        'tags': {
            'string': 'string'
        },
        'logConfiguration': {
            'cloudWatchLogsConfiguration': {
                'logGroupArn': 'string'
            },
            's3Configuration': {
                'bucketName': 'string',
                'prefix': 'string'
            },
            'logSchemaVersion': 123
        },
        'experimentOptions': {
            'accountTargeting': 'single-account'|'multi-account',
            'emptyTargetResolutionMode': 'fail'|'skip'
        },
        'targetAccountConfigurationsCount': 123
    }
}

Response Structure

  • (dict) --

    • experiment (dict) --

      Information about the experiment.

      • id (string) --

        The ID of the experiment.

      • experimentTemplateId (string) --

        The ID of the experiment template.

      • roleArn (string) --

        The Amazon Resource Name (ARN) of an IAM role that grants the FIS service permission to perform service actions on your behalf.

      • state (dict) --

        The state of the experiment.

        • status (string) --

          The state of the experiment.

        • reason (string) --

          The reason for the state.

      • targets (dict) --

        The targets for the experiment.

        • (string) --

          • (dict) --

            Describes a target for an experiment.

            • resourceType (string) --

              The resource type.

            • resourceArns (list) --

              The Amazon Resource Names (ARNs) of the resources.

              • (string) --

            • resourceTags (dict) --

              The tags for the target resources.

              • (string) --

                • (string) --

            • filters (list) --

              The filters to apply to identify target resources using specific attributes.

              • (dict) --

                Describes a filter used for the target resources in an experiment.

                • path (string) --

                  The attribute path for the filter.

                • values (list) --

                  The attribute values for the filter.

                  • (string) --

            • selectionMode (string) --

              Scopes the identified resources to a specific count or percentage.

            • parameters (dict) --

              The resource type parameters.

              • (string) --

                • (string) --

      • actions (dict) --

        The actions for the experiment.

        • (string) --

          • (dict) --

            Describes the action for an experiment.

            • actionId (string) --

              The ID of the action.

            • description (string) --

              The description for the action.

            • parameters (dict) --

              The parameters for the action.

              • (string) --

                • (string) --

            • targets (dict) --

              The targets for the action.

              • (string) --

                • (string) --

            • startAfter (list) --

              The name of the action that must be completed before this action starts.

              • (string) --

            • state (dict) --

              The state of the action.

              • status (string) --

                The state of the action.

              • reason (string) --

                The reason for the state.

            • startTime (datetime) --

              The time that the action started.

            • endTime (datetime) --

              The time that the action ended.

      • stopConditions (list) --

        The stop conditions for the experiment.

        • (dict) --

          Describes the stop condition for an experiment.

          • source (string) --

            The source for the stop condition.

          • value (string) --

            The Amazon Resource Name (ARN) of the CloudWatch alarm, if applicable.

      • creationTime (datetime) --

        The time that the experiment was created.

      • startTime (datetime) --

        The time that the experiment started.

      • endTime (datetime) --

        The time that the experiment ended.

      • tags (dict) --

        The tags for the experiment.

        • (string) --

          • (string) --

      • logConfiguration (dict) --

        The configuration for experiment logging.

        • cloudWatchLogsConfiguration (dict) --

          The configuration for experiment logging to Amazon CloudWatch Logs.

          • logGroupArn (string) --

            The Amazon Resource Name (ARN) of the destination Amazon CloudWatch Logs log group.

        • s3Configuration (dict) --

          The configuration for experiment logging to Amazon S3.

          • bucketName (string) --

            The name of the destination bucket.

          • prefix (string) --

            The bucket prefix.

        • logSchemaVersion (integer) --

          The schema version.

      • experimentOptions (dict) --

        The experiment options for the experiment.

        • accountTargeting (string) --

          The account targeting setting for an experiment.

        • emptyTargetResolutionMode (string) --

          The empty target resolution mode for an experiment.

      • targetAccountConfigurationsCount (integer) --

        The count of target account configurations for the experiment.

GetExperimentTemplate (updated) Link ¶
Changes (response)
{'experimentTemplate': {'experimentOptions': {'accountTargeting': 'single-account '
                                                                  '| '
                                                                  'multi-account',
                                              'emptyTargetResolutionMode': 'fail '
                                                                           '| '
                                                                           'skip'},
                        'targetAccountConfigurationsCount': 'long'}}

Gets information about the specified experiment template.

See also: AWS API Documentation

Request Syntax

client.get_experiment_template(
    id='string'
)
type id

string

param id

[REQUIRED]

The ID of the experiment template.

rtype

dict

returns

Response Syntax

{
    'experimentTemplate': {
        'id': 'string',
        'description': 'string',
        'targets': {
            'string': {
                'resourceType': 'string',
                'resourceArns': [
                    'string',
                ],
                'resourceTags': {
                    'string': 'string'
                },
                'filters': [
                    {
                        'path': 'string',
                        'values': [
                            'string',
                        ]
                    },
                ],
                'selectionMode': 'string',
                'parameters': {
                    'string': 'string'
                }
            }
        },
        'actions': {
            'string': {
                'actionId': 'string',
                'description': 'string',
                'parameters': {
                    'string': 'string'
                },
                'targets': {
                    'string': 'string'
                },
                'startAfter': [
                    'string',
                ]
            }
        },
        'stopConditions': [
            {
                'source': 'string',
                'value': 'string'
            },
        ],
        'creationTime': datetime(2015, 1, 1),
        'lastUpdateTime': datetime(2015, 1, 1),
        'roleArn': 'string',
        'tags': {
            'string': 'string'
        },
        'logConfiguration': {
            'cloudWatchLogsConfiguration': {
                'logGroupArn': 'string'
            },
            's3Configuration': {
                'bucketName': 'string',
                'prefix': 'string'
            },
            'logSchemaVersion': 123
        },
        'experimentOptions': {
            'accountTargeting': 'single-account'|'multi-account',
            'emptyTargetResolutionMode': 'fail'|'skip'
        },
        'targetAccountConfigurationsCount': 123
    }
}

Response Structure

  • (dict) --

    • experimentTemplate (dict) --

      Information about the experiment template.

      • id (string) --

        The ID of the experiment template.

      • description (string) --

        The description for the experiment template.

      • targets (dict) --

        The targets for the experiment.

        • (string) --

          • (dict) --

            Describes a target for an experiment template.

            • resourceType (string) --

              The resource type.

            • resourceArns (list) --

              The Amazon Resource Names (ARNs) of the targets.

              • (string) --

            • resourceTags (dict) --

              The tags for the target resources.

              • (string) --

                • (string) --

            • filters (list) --

              The filters to apply to identify target resources using specific attributes.

              • (dict) --

                Describes a filter used for the target resources in an experiment template.

                • path (string) --

                  The attribute path for the filter.

                • values (list) --

                  The attribute values for the filter.

                  • (string) --

            • selectionMode (string) --

              Scopes the identified resources to a specific count or percentage.

            • parameters (dict) --

              The resource type parameters.

              • (string) --

                • (string) --

      • actions (dict) --

        The actions for the experiment.

        • (string) --

          • (dict) --

            Describes an action for an experiment template.

            • actionId (string) --

              The ID of the action.

            • description (string) --

              A description for the action.

            • parameters (dict) --

              The parameters for the action.

              • (string) --

                • (string) --

            • targets (dict) --

              The targets for the action.

              • (string) --

                • (string) --

            • startAfter (list) --

              The name of the action that must be completed before the current action starts.

              • (string) --

      • stopConditions (list) --

        The stop conditions for the experiment.

        • (dict) --

          Describes a stop condition for an experiment template.

          • source (string) --

            The source for the stop condition.

          • value (string) --

            The Amazon Resource Name (ARN) of the CloudWatch alarm, if applicable.

      • creationTime (datetime) --

        The time the experiment template was created.

      • lastUpdateTime (datetime) --

        The time the experiment template was last updated.

      • roleArn (string) --

        The Amazon Resource Name (ARN) of an IAM role.

      • tags (dict) --

        The tags for the experiment template.

        • (string) --

          • (string) --

      • logConfiguration (dict) --

        The configuration for experiment logging.

        • cloudWatchLogsConfiguration (dict) --

          The configuration for experiment logging to Amazon CloudWatch Logs.

          • logGroupArn (string) --

            The Amazon Resource Name (ARN) of the destination Amazon CloudWatch Logs log group.

        • s3Configuration (dict) --

          The configuration for experiment logging to Amazon S3.

          • bucketName (string) --

            The name of the destination bucket.

          • prefix (string) --

            The bucket prefix.

        • logSchemaVersion (integer) --

          The schema version.

      • experimentOptions (dict) --

        The experiment options for an experiment template.

        • accountTargeting (string) --

          The account targeting setting for an experiment template.

        • emptyTargetResolutionMode (string) --

          The empty target resolution mode for an experiment template.

      • targetAccountConfigurationsCount (integer) --

        The count of target account configurations for the experiment template.

StartExperiment (updated) Link ¶
Changes (response)
{'experiment': {'actions': {'state': {'status': {'skipped'}}},
                'experimentOptions': {'accountTargeting': 'single-account | '
                                                          'multi-account',
                                      'emptyTargetResolutionMode': 'fail | '
                                                                   'skip'},
                'targetAccountConfigurationsCount': 'long'}}

Starts running an experiment from the specified experiment template.

See also: AWS API Documentation

Request Syntax

client.start_experiment(
    clientToken='string',
    experimentTemplateId='string',
    tags={
        'string': 'string'
    }
)
type clientToken

string

param clientToken

[REQUIRED]

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.

This field is autopopulated if not provided.

type experimentTemplateId

string

param experimentTemplateId

[REQUIRED]

The ID of the experiment template.

type tags

dict

param tags

The tags to apply to the experiment.

  • (string) --

    • (string) --

rtype

dict

returns

Response Syntax

{
    'experiment': {
        'id': 'string',
        'experimentTemplateId': 'string',
        'roleArn': 'string',
        'state': {
            'status': 'pending'|'initiating'|'running'|'completed'|'stopping'|'stopped'|'failed',
            'reason': 'string'
        },
        'targets': {
            'string': {
                'resourceType': 'string',
                'resourceArns': [
                    'string',
                ],
                'resourceTags': {
                    'string': 'string'
                },
                'filters': [
                    {
                        'path': 'string',
                        'values': [
                            'string',
                        ]
                    },
                ],
                'selectionMode': 'string',
                'parameters': {
                    'string': 'string'
                }
            }
        },
        'actions': {
            'string': {
                'actionId': 'string',
                'description': 'string',
                'parameters': {
                    'string': 'string'
                },
                'targets': {
                    'string': 'string'
                },
                'startAfter': [
                    'string',
                ],
                'state': {
                    'status': 'pending'|'initiating'|'running'|'completed'|'cancelled'|'stopping'|'stopped'|'failed'|'skipped',
                    'reason': 'string'
                },
                'startTime': datetime(2015, 1, 1),
                'endTime': datetime(2015, 1, 1)
            }
        },
        'stopConditions': [
            {
                'source': 'string',
                'value': 'string'
            },
        ],
        'creationTime': datetime(2015, 1, 1),
        'startTime': datetime(2015, 1, 1),
        'endTime': datetime(2015, 1, 1),
        'tags': {
            'string': 'string'
        },
        'logConfiguration': {
            'cloudWatchLogsConfiguration': {
                'logGroupArn': 'string'
            },
            's3Configuration': {
                'bucketName': 'string',
                'prefix': 'string'
            },
            'logSchemaVersion': 123
        },
        'experimentOptions': {
            'accountTargeting': 'single-account'|'multi-account',
            'emptyTargetResolutionMode': 'fail'|'skip'
        },
        'targetAccountConfigurationsCount': 123
    }
}

Response Structure

  • (dict) --

    • experiment (dict) --

      Information about the experiment.

      • id (string) --

        The ID of the experiment.

      • experimentTemplateId (string) --

        The ID of the experiment template.

      • roleArn (string) --

        The Amazon Resource Name (ARN) of an IAM role that grants the FIS service permission to perform service actions on your behalf.

      • state (dict) --

        The state of the experiment.

        • status (string) --

          The state of the experiment.

        • reason (string) --

          The reason for the state.

      • targets (dict) --

        The targets for the experiment.

        • (string) --

          • (dict) --

            Describes a target for an experiment.

            • resourceType (string) --

              The resource type.

            • resourceArns (list) --

              The Amazon Resource Names (ARNs) of the resources.

              • (string) --

            • resourceTags (dict) --

              The tags for the target resources.

              • (string) --

                • (string) --

            • filters (list) --

              The filters to apply to identify target resources using specific attributes.

              • (dict) --

                Describes a filter used for the target resources in an experiment.

                • path (string) --

                  The attribute path for the filter.

                • values (list) --

                  The attribute values for the filter.

                  • (string) --

            • selectionMode (string) --

              Scopes the identified resources to a specific count or percentage.

            • parameters (dict) --

              The resource type parameters.

              • (string) --

                • (string) --

      • actions (dict) --

        The actions for the experiment.

        • (string) --

          • (dict) --

            Describes the action for an experiment.

            • actionId (string) --

              The ID of the action.

            • description (string) --

              The description for the action.

            • parameters (dict) --

              The parameters for the action.

              • (string) --

                • (string) --

            • targets (dict) --

              The targets for the action.

              • (string) --

                • (string) --

            • startAfter (list) --

              The name of the action that must be completed before this action starts.

              • (string) --

            • state (dict) --

              The state of the action.

              • status (string) --

                The state of the action.

              • reason (string) --

                The reason for the state.

            • startTime (datetime) --

              The time that the action started.

            • endTime (datetime) --

              The time that the action ended.

      • stopConditions (list) --

        The stop conditions for the experiment.

        • (dict) --

          Describes the stop condition for an experiment.

          • source (string) --

            The source for the stop condition.

          • value (string) --

            The Amazon Resource Name (ARN) of the CloudWatch alarm, if applicable.

      • creationTime (datetime) --

        The time that the experiment was created.

      • startTime (datetime) --

        The time that the experiment started.

      • endTime (datetime) --

        The time that the experiment ended.

      • tags (dict) --

        The tags for the experiment.

        • (string) --

          • (string) --

      • logConfiguration (dict) --

        The configuration for experiment logging.

        • cloudWatchLogsConfiguration (dict) --

          The configuration for experiment logging to Amazon CloudWatch Logs.

          • logGroupArn (string) --

            The Amazon Resource Name (ARN) of the destination Amazon CloudWatch Logs log group.

        • s3Configuration (dict) --

          The configuration for experiment logging to Amazon S3.

          • bucketName (string) --

            The name of the destination bucket.

          • prefix (string) --

            The bucket prefix.

        • logSchemaVersion (integer) --

          The schema version.

      • experimentOptions (dict) --

        The experiment options for the experiment.

        • accountTargeting (string) --

          The account targeting setting for an experiment.

        • emptyTargetResolutionMode (string) --

          The empty target resolution mode for an experiment.

      • targetAccountConfigurationsCount (integer) --

        The count of target account configurations for the experiment.

StopExperiment (updated) Link ¶
Changes (response)
{'experiment': {'actions': {'state': {'status': {'skipped'}}},
                'experimentOptions': {'accountTargeting': 'single-account | '
                                                          'multi-account',
                                      'emptyTargetResolutionMode': 'fail | '
                                                                   'skip'},
                'targetAccountConfigurationsCount': 'long'}}

Stops the specified experiment.

See also: AWS API Documentation

Request Syntax

client.stop_experiment(
    id='string'
)
type id

string

param id

[REQUIRED]

The ID of the experiment.

rtype

dict

returns

Response Syntax

{
    'experiment': {
        'id': 'string',
        'experimentTemplateId': 'string',
        'roleArn': 'string',
        'state': {
            'status': 'pending'|'initiating'|'running'|'completed'|'stopping'|'stopped'|'failed',
            'reason': 'string'
        },
        'targets': {
            'string': {
                'resourceType': 'string',
                'resourceArns': [
                    'string',
                ],
                'resourceTags': {
                    'string': 'string'
                },
                'filters': [
                    {
                        'path': 'string',
                        'values': [
                            'string',
                        ]
                    },
                ],
                'selectionMode': 'string',
                'parameters': {
                    'string': 'string'
                }
            }
        },
        'actions': {
            'string': {
                'actionId': 'string',
                'description': 'string',
                'parameters': {
                    'string': 'string'
                },
                'targets': {
                    'string': 'string'
                },
                'startAfter': [
                    'string',
                ],
                'state': {
                    'status': 'pending'|'initiating'|'running'|'completed'|'cancelled'|'stopping'|'stopped'|'failed'|'skipped',
                    'reason': 'string'
                },
                'startTime': datetime(2015, 1, 1),
                'endTime': datetime(2015, 1, 1)
            }
        },
        'stopConditions': [
            {
                'source': 'string',
                'value': 'string'
            },
        ],
        'creationTime': datetime(2015, 1, 1),
        'startTime': datetime(2015, 1, 1),
        'endTime': datetime(2015, 1, 1),
        'tags': {
            'string': 'string'
        },
        'logConfiguration': {
            'cloudWatchLogsConfiguration': {
                'logGroupArn': 'string'
            },
            's3Configuration': {
                'bucketName': 'string',
                'prefix': 'string'
            },
            'logSchemaVersion': 123
        },
        'experimentOptions': {
            'accountTargeting': 'single-account'|'multi-account',
            'emptyTargetResolutionMode': 'fail'|'skip'
        },
        'targetAccountConfigurationsCount': 123
    }
}

Response Structure

  • (dict) --

    • experiment (dict) --

      Information about the experiment.

      • id (string) --

        The ID of the experiment.

      • experimentTemplateId (string) --

        The ID of the experiment template.

      • roleArn (string) --

        The Amazon Resource Name (ARN) of an IAM role that grants the FIS service permission to perform service actions on your behalf.

      • state (dict) --

        The state of the experiment.

        • status (string) --

          The state of the experiment.

        • reason (string) --

          The reason for the state.

      • targets (dict) --

        The targets for the experiment.

        • (string) --

          • (dict) --

            Describes a target for an experiment.

            • resourceType (string) --

              The resource type.

            • resourceArns (list) --

              The Amazon Resource Names (ARNs) of the resources.

              • (string) --

            • resourceTags (dict) --

              The tags for the target resources.

              • (string) --

                • (string) --

            • filters (list) --

              The filters to apply to identify target resources using specific attributes.

              • (dict) --

                Describes a filter used for the target resources in an experiment.

                • path (string) --

                  The attribute path for the filter.

                • values (list) --

                  The attribute values for the filter.

                  • (string) --

            • selectionMode (string) --

              Scopes the identified resources to a specific count or percentage.

            • parameters (dict) --

              The resource type parameters.

              • (string) --

                • (string) --

      • actions (dict) --

        The actions for the experiment.

        • (string) --

          • (dict) --

            Describes the action for an experiment.

            • actionId (string) --

              The ID of the action.

            • description (string) --

              The description for the action.

            • parameters (dict) --

              The parameters for the action.

              • (string) --

                • (string) --

            • targets (dict) --

              The targets for the action.

              • (string) --

                • (string) --

            • startAfter (list) --

              The name of the action that must be completed before this action starts.

              • (string) --

            • state (dict) --

              The state of the action.

              • status (string) --

                The state of the action.

              • reason (string) --

                The reason for the state.

            • startTime (datetime) --

              The time that the action started.

            • endTime (datetime) --

              The time that the action ended.

      • stopConditions (list) --

        The stop conditions for the experiment.

        • (dict) --

          Describes the stop condition for an experiment.

          • source (string) --

            The source for the stop condition.

          • value (string) --

            The Amazon Resource Name (ARN) of the CloudWatch alarm, if applicable.

      • creationTime (datetime) --

        The time that the experiment was created.

      • startTime (datetime) --

        The time that the experiment started.

      • endTime (datetime) --

        The time that the experiment ended.

      • tags (dict) --

        The tags for the experiment.

        • (string) --

          • (string) --

      • logConfiguration (dict) --

        The configuration for experiment logging.

        • cloudWatchLogsConfiguration (dict) --

          The configuration for experiment logging to Amazon CloudWatch Logs.

          • logGroupArn (string) --

            The Amazon Resource Name (ARN) of the destination Amazon CloudWatch Logs log group.

        • s3Configuration (dict) --

          The configuration for experiment logging to Amazon S3.

          • bucketName (string) --

            The name of the destination bucket.

          • prefix (string) --

            The bucket prefix.

        • logSchemaVersion (integer) --

          The schema version.

      • experimentOptions (dict) --

        The experiment options for the experiment.

        • accountTargeting (string) --

          The account targeting setting for an experiment.

        • emptyTargetResolutionMode (string) --

          The empty target resolution mode for an experiment.

      • targetAccountConfigurationsCount (integer) --

        The count of target account configurations for the experiment.

UpdateExperimentTemplate (updated) Link ¶
Changes (request, response)
Request
{'experimentOptions': {'emptyTargetResolutionMode': 'fail | skip'}}
Response
{'experimentTemplate': {'experimentOptions': {'accountTargeting': 'single-account '
                                                                  '| '
                                                                  'multi-account',
                                              'emptyTargetResolutionMode': 'fail '
                                                                           '| '
                                                                           'skip'},
                        'targetAccountConfigurationsCount': 'long'}}

Updates the specified experiment template.

See also: AWS API Documentation

Request Syntax

client.update_experiment_template(
    id='string',
    description='string',
    stopConditions=[
        {
            'source': 'string',
            'value': 'string'
        },
    ],
    targets={
        'string': {
            'resourceType': 'string',
            'resourceArns': [
                'string',
            ],
            'resourceTags': {
                'string': 'string'
            },
            'filters': [
                {
                    'path': 'string',
                    'values': [
                        'string',
                    ]
                },
            ],
            'selectionMode': 'string',
            'parameters': {
                'string': 'string'
            }
        }
    },
    actions={
        'string': {
            'actionId': 'string',
            'description': 'string',
            'parameters': {
                'string': 'string'
            },
            'targets': {
                'string': 'string'
            },
            'startAfter': [
                'string',
            ]
        }
    },
    roleArn='string',
    logConfiguration={
        'cloudWatchLogsConfiguration': {
            'logGroupArn': 'string'
        },
        's3Configuration': {
            'bucketName': 'string',
            'prefix': 'string'
        },
        'logSchemaVersion': 123
    },
    experimentOptions={
        'emptyTargetResolutionMode': 'fail'|'skip'
    }
)
type id

string

param id

[REQUIRED]

The ID of the experiment template.

type description

string

param description

A description for the template.

type stopConditions

list

param stopConditions

The stop conditions for the experiment.

  • (dict) --

    Specifies a stop condition for an experiment. You can define a stop condition as a CloudWatch alarm.

    • source (string) -- [REQUIRED]

      The source for the stop condition. Specify aws:cloudwatch:alarm if the stop condition is defined by a CloudWatch alarm. Specify none if there is no stop condition.

    • value (string) --

      The Amazon Resource Name (ARN) of the CloudWatch alarm.

type targets

dict

param targets

The targets for the experiment.

  • (string) --

    • (dict) --

      Specifies a target for an experiment. You must specify at least one Amazon Resource Name (ARN) or at least one resource tag. You cannot specify both.

      • resourceType (string) -- [REQUIRED]

        The resource type. The resource type must be supported for the specified action.

      • resourceArns (list) --

        The Amazon Resource Names (ARNs) of the targets.

        • (string) --

      • resourceTags (dict) --

        The tags for the target resources.

        • (string) --

          • (string) --

      • filters (list) --

        The filters to apply to identify target resources using specific attributes.

        • (dict) --

          Specifies a filter used for the target resource input in an experiment template.

          For more information, see Resource filters in the Fault Injection Simulator User Guide .

          • path (string) -- [REQUIRED]

            The attribute path for the filter.

          • values (list) -- [REQUIRED]

            The attribute values for the filter.

            • (string) --

      • selectionMode (string) -- [REQUIRED]

        Scopes the identified resources to a specific count or percentage.

      • parameters (dict) --

        The resource type parameters.

        • (string) --

          • (string) --

type actions

dict

param actions

The actions for the experiment.

  • (string) --

    • (dict) --

      Specifies an action for an experiment template.

      • actionId (string) --

        The ID of the action.

      • description (string) --

        A description for the action.

      • parameters (dict) --

        The parameters for the action, if applicable.

        • (string) --

          • (string) --

      • targets (dict) --

        The targets for the action.

        • (string) --

          • (string) --

      • startAfter (list) --

        The name of the action that must be completed before the current action starts. Omit this parameter to run the action at the start of the experiment.

        • (string) --

type roleArn

string

param roleArn

The Amazon Resource Name (ARN) of an IAM role that grants the FIS service permission to perform service actions on your behalf.

type logConfiguration

dict

param logConfiguration

The configuration for experiment logging.

  • cloudWatchLogsConfiguration (dict) --

    The configuration for experiment logging to Amazon CloudWatch Logs.

    • logGroupArn (string) -- [REQUIRED]

      The Amazon Resource Name (ARN) of the destination Amazon CloudWatch Logs log group.

  • s3Configuration (dict) --

    The configuration for experiment logging to Amazon S3.

    • bucketName (string) -- [REQUIRED]

      The name of the destination bucket.

    • prefix (string) --

      The bucket prefix.

  • logSchemaVersion (integer) --

    The schema version.

type experimentOptions

dict

param experimentOptions

The experiment options for the experiment template.

  • emptyTargetResolutionMode (string) --

    The empty target resolution mode of the experiment template.

rtype

dict

returns

Response Syntax

{
    'experimentTemplate': {
        'id': 'string',
        'description': 'string',
        'targets': {
            'string': {
                'resourceType': 'string',
                'resourceArns': [
                    'string',
                ],
                'resourceTags': {
                    'string': 'string'
                },
                'filters': [
                    {
                        'path': 'string',
                        'values': [
                            'string',
                        ]
                    },
                ],
                'selectionMode': 'string',
                'parameters': {
                    'string': 'string'
                }
            }
        },
        'actions': {
            'string': {
                'actionId': 'string',
                'description': 'string',
                'parameters': {
                    'string': 'string'
                },
                'targets': {
                    'string': 'string'
                },
                'startAfter': [
                    'string',
                ]
            }
        },
        'stopConditions': [
            {
                'source': 'string',
                'value': 'string'
            },
        ],
        'creationTime': datetime(2015, 1, 1),
        'lastUpdateTime': datetime(2015, 1, 1),
        'roleArn': 'string',
        'tags': {
            'string': 'string'
        },
        'logConfiguration': {
            'cloudWatchLogsConfiguration': {
                'logGroupArn': 'string'
            },
            's3Configuration': {
                'bucketName': 'string',
                'prefix': 'string'
            },
            'logSchemaVersion': 123
        },
        'experimentOptions': {
            'accountTargeting': 'single-account'|'multi-account',
            'emptyTargetResolutionMode': 'fail'|'skip'
        },
        'targetAccountConfigurationsCount': 123
    }
}

Response Structure

  • (dict) --

    • experimentTemplate (dict) --

      Information about the experiment template.

      • id (string) --

        The ID of the experiment template.

      • description (string) --

        The description for the experiment template.

      • targets (dict) --

        The targets for the experiment.

        • (string) --

          • (dict) --

            Describes a target for an experiment template.

            • resourceType (string) --

              The resource type.

            • resourceArns (list) --

              The Amazon Resource Names (ARNs) of the targets.

              • (string) --

            • resourceTags (dict) --

              The tags for the target resources.

              • (string) --

                • (string) --

            • filters (list) --

              The filters to apply to identify target resources using specific attributes.

              • (dict) --

                Describes a filter used for the target resources in an experiment template.

                • path (string) --

                  The attribute path for the filter.

                • values (list) --

                  The attribute values for the filter.

                  • (string) --

            • selectionMode (string) --

              Scopes the identified resources to a specific count or percentage.

            • parameters (dict) --

              The resource type parameters.

              • (string) --

                • (string) --

      • actions (dict) --

        The actions for the experiment.

        • (string) --

          • (dict) --

            Describes an action for an experiment template.

            • actionId (string) --

              The ID of the action.

            • description (string) --

              A description for the action.

            • parameters (dict) --

              The parameters for the action.

              • (string) --

                • (string) --

            • targets (dict) --

              The targets for the action.

              • (string) --

                • (string) --

            • startAfter (list) --

              The name of the action that must be completed before the current action starts.

              • (string) --

      • stopConditions (list) --

        The stop conditions for the experiment.

        • (dict) --

          Describes a stop condition for an experiment template.

          • source (string) --

            The source for the stop condition.

          • value (string) --

            The Amazon Resource Name (ARN) of the CloudWatch alarm, if applicable.

      • creationTime (datetime) --

        The time the experiment template was created.

      • lastUpdateTime (datetime) --

        The time the experiment template was last updated.

      • roleArn (string) --

        The Amazon Resource Name (ARN) of an IAM role.

      • tags (dict) --

        The tags for the experiment template.

        • (string) --

          • (string) --

      • logConfiguration (dict) --

        The configuration for experiment logging.

        • cloudWatchLogsConfiguration (dict) --

          The configuration for experiment logging to Amazon CloudWatch Logs.

          • logGroupArn (string) --

            The Amazon Resource Name (ARN) of the destination Amazon CloudWatch Logs log group.

        • s3Configuration (dict) --

          The configuration for experiment logging to Amazon S3.

          • bucketName (string) --

            The name of the destination bucket.

          • prefix (string) --

            The bucket prefix.

        • logSchemaVersion (integer) --

          The schema version.

      • experimentOptions (dict) --

        The experiment options for an experiment template.

        • accountTargeting (string) --

          The account targeting setting for an experiment template.

        • emptyTargetResolutionMode (string) --

          The empty target resolution mode for an experiment template.

      • targetAccountConfigurationsCount (integer) --

        The count of target account configurations for the experiment template.