Class: AWS.Fis
- Inherits:
-
AWS.Service
- Object
- AWS.Service
- AWS.Fis
- Identifier:
- fis
- API Version:
- 2020-12-01
- Defined in:
- (unknown)
Overview
Constructs a service interface object. Each API operation is exposed as a function on service.
Service Description
Amazon Web Services Fault Injection Service is a managed service that enables you to perform fault injection experiments on your Amazon Web Services workloads. For more information, see the Fault Injection Service User Guide.
Sending a Request Using Fis
var fis = new AWS.Fis();
fis.createTargetAccountConfiguration(params, function (err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Locking the API Version
In order to ensure that the Fis object uses this specific API, you can
construct the object by passing the apiVersion
option to the constructor:
var fis = new AWS.Fis({apiVersion: '2020-12-01'});
You can also set the API version globally in AWS.config.apiVersions
using
the fis service identifier:
AWS.config.apiVersions = {
fis: '2020-12-01',
// other service API versions
};
var fis = new AWS.Fis();
Version:
-
2020-12-01
Constructor Summary collapse
-
new AWS.Fis(options = {}) ⇒ Object
constructor
Constructs a service object.
Property Summary collapse
-
endpoint ⇒ AWS.Endpoint
readwrite
An Endpoint object representing the endpoint URL for service requests.
Properties inherited from AWS.Service
Method Summary collapse
-
createExperimentTemplate(params = {}, callback) ⇒ AWS.Request
Creates an experiment template.
-
createTargetAccountConfiguration(params = {}, callback) ⇒ AWS.Request
Creates a target account configuration for the experiment template.
-
deleteExperimentTemplate(params = {}, callback) ⇒ AWS.Request
Deletes the specified experiment template.
.
-
deleteTargetAccountConfiguration(params = {}, callback) ⇒ AWS.Request
Deletes the specified target account configuration of the experiment template.
.
-
getAction(params = {}, callback) ⇒ AWS.Request
Gets information about the specified FIS action.
.
-
getExperiment(params = {}, callback) ⇒ AWS.Request
Gets information about the specified experiment.
.
-
getExperimentTargetAccountConfiguration(params = {}, callback) ⇒ AWS.Request
Gets information about the specified target account configuration of the experiment.
.
-
getExperimentTemplate(params = {}, callback) ⇒ AWS.Request
Gets information about the specified experiment template.
.
-
getSafetyLever(params = {}, callback) ⇒ AWS.Request
Gets information about the specified safety lever.
-
getTargetAccountConfiguration(params = {}, callback) ⇒ AWS.Request
Gets information about the specified target account configuration of the experiment template.
.
-
getTargetResourceType(params = {}, callback) ⇒ AWS.Request
Gets information about the specified resource type.
.
-
listActions(params = {}, callback) ⇒ AWS.Request
Lists the available FIS actions.
.
-
listExperimentResolvedTargets(params = {}, callback) ⇒ AWS.Request
Lists the resolved targets information of the specified experiment.
.
-
listExperiments(params = {}, callback) ⇒ AWS.Request
Lists your experiments.
.
-
listExperimentTargetAccountConfigurations(params = {}, callback) ⇒ AWS.Request
Lists the target account configurations of the specified experiment.
.
-
listExperimentTemplates(params = {}, callback) ⇒ AWS.Request
Lists your experiment templates.
.
-
listTagsForResource(params = {}, callback) ⇒ AWS.Request
Lists the tags for the specified resource.
.
-
listTargetAccountConfigurations(params = {}, callback) ⇒ AWS.Request
Lists the target account configurations of the specified experiment template.
.
-
listTargetResourceTypes(params = {}, callback) ⇒ AWS.Request
Lists the target resource types.
.
-
startExperiment(params = {}, callback) ⇒ AWS.Request
Starts running an experiment from the specified experiment template.
.
-
stopExperiment(params = {}, callback) ⇒ AWS.Request
Stops the specified experiment.
.
-
tagResource(params = {}, callback) ⇒ AWS.Request
Applies the specified tags to the specified resource.
.
-
untagResource(params = {}, callback) ⇒ AWS.Request
Removes the specified tags from the specified resource.
.
-
updateExperimentTemplate(params = {}, callback) ⇒ AWS.Request
Updates the specified experiment template.
.
-
updateSafetyLeverState(params = {}, callback) ⇒ AWS.Request
Updates the specified safety lever state.
-
updateTargetAccountConfiguration(params = {}, callback) ⇒ AWS.Request
Updates the target account configuration for the specified experiment template.
.
Methods inherited from AWS.Service
makeRequest, makeUnauthenticatedRequest, waitFor, setupRequestListeners, defineService
Constructor Details
new AWS.Fis(options = {}) ⇒ Object
Constructs a service object. This object has one method for each API operation.
Examples:
Constructing a Fis object
var fis = new AWS.Fis({apiVersion: '2020-12-01'});
Options Hash (options):
-
params
(map)
—
An optional map of parameters to bind to every request sent by this service object. For more information on bound parameters, see "Working with Services" in the Getting Started Guide.
-
endpoint
(String|AWS.Endpoint)
—
The endpoint URI to send requests to. The default endpoint is built from the configured
region
. The endpoint should be a string like'https://{service}.{region}.amazonaws.com'
or an Endpoint object. -
accessKeyId
(String)
—
your AWS access key ID.
-
secretAccessKey
(String)
—
your AWS secret access key.
-
sessionToken
(AWS.Credentials)
—
the optional AWS session token to sign requests with.
-
credentials
(AWS.Credentials)
—
the AWS credentials to sign requests with. You can either specify this object, or specify the accessKeyId and secretAccessKey options directly.
-
credentialProvider
(AWS.CredentialProviderChain)
—
the provider chain used to resolve credentials if no static
credentials
property is set. -
region
(String)
—
the region to send service requests to. See AWS.Fis.region for more information.
-
maxRetries
(Integer)
—
the maximum amount of retries to attempt with a request. See AWS.Fis.maxRetries for more information.
-
maxRedirects
(Integer)
—
the maximum amount of redirects to follow with a request. See AWS.Fis.maxRedirects for more information.
-
sslEnabled
(Boolean)
—
whether to enable SSL for requests.
-
paramValidation
(Boolean|map)
—
whether input parameters should be validated against the operation description before sending the request. Defaults to true. Pass a map to enable any of the following specific validation features:
- min [Boolean] — Validates that a value meets the min
constraint. This is enabled by default when paramValidation is set
to
true
. - max [Boolean] — Validates that a value meets the max constraint.
- pattern [Boolean] — Validates that a string value matches a regular expression.
- enum [Boolean] — Validates that a string value matches one of the allowable enum values.
- min [Boolean] — Validates that a value meets the min
constraint. This is enabled by default when paramValidation is set
to
-
computeChecksums
(Boolean)
—
whether to compute checksums for payload bodies when the service accepts it (currently supported in S3 only)
-
convertResponseTypes
(Boolean)
—
whether types are converted when parsing response data. Currently only supported for JSON based services. Turning this off may improve performance on large response payloads. Defaults to
true
. -
correctClockSkew
(Boolean)
—
whether to apply a clock skew correction and retry requests that fail because of an skewed client clock. Defaults to
false
. -
s3ForcePathStyle
(Boolean)
—
whether to force path style URLs for S3 objects.
-
s3BucketEndpoint
(Boolean)
—
whether the provided endpoint addresses an individual bucket (false if it addresses the root API endpoint). Note that setting this configuration option requires an
endpoint
to be provided explicitly to the service constructor. -
s3DisableBodySigning
(Boolean)
—
whether S3 body signing should be disabled when using signature version
v4
. Body signing can only be disabled when using https. Defaults totrue
. -
s3UsEast1RegionalEndpoint
('legacy'|'regional')
—
when region is set to 'us-east-1', whether to send s3 request to global endpoints or 'us-east-1' regional endpoints. This config is only applicable to S3 client. Defaults to
legacy
-
s3UseArnRegion
(Boolean)
—
whether to override the request region with the region inferred from requested resource's ARN. Only available for S3 buckets Defaults to
true
-
retryDelayOptions
(map)
—
A set of options to configure the retry delay on retryable errors. Currently supported options are:
- base [Integer] — The base number of milliseconds to use in the exponential backoff for operation retries. Defaults to 100 ms for all services except DynamoDB, where it defaults to 50ms.
- customBackoff [function] — A custom function that accepts a
retry count and error and returns the amount of time to delay in
milliseconds. If the result is a non-zero negative value, no further
retry attempts will be made. The
base
option will be ignored if this option is supplied. The function is only called for retryable errors.
-
httpOptions
(map)
—
A set of options to pass to the low-level HTTP request. Currently supported options are:
- proxy [String] — the URL to proxy requests through
- agent [http.Agent, https.Agent] — the Agent object to perform
HTTP requests with. Used for connection pooling. Defaults to the global
agent (
http.globalAgent
) for non-SSL connections. Note that for SSL connections, a special Agent object is used in order to enable peer certificate verification. This feature is only available in the Node.js environment. - connectTimeout [Integer] — Sets the socket to timeout after
failing to establish a connection with the server after
connectTimeout
milliseconds. This timeout has no effect once a socket connection has been established. - timeout [Integer] — Sets the socket to timeout after timeout milliseconds of inactivity on the socket. Defaults to two minutes (120000).
- xhrAsync [Boolean] — Whether the SDK will send asynchronous HTTP requests. Used in the browser environment only. Set to false to send requests synchronously. Defaults to true (async on).
- xhrWithCredentials [Boolean] — Sets the "withCredentials" property of an XMLHttpRequest object. Used in the browser environment only. Defaults to false.
-
apiVersion
(String, Date)
—
a String in YYYY-MM-DD format (or a date) that represents the latest possible API version that can be used in all services (unless overridden by
apiVersions
). Specify 'latest' to use the latest possible version. -
apiVersions
(map<String, String|Date>)
—
a map of service identifiers (the lowercase service class name) with the API version to use when instantiating a service. Specify 'latest' for each individual that can use the latest available version.
-
logger
(#write, #log)
—
an object that responds to .write() (like a stream) or .log() (like the console object) in order to log information about requests
-
systemClockOffset
(Number)
—
an offset value in milliseconds to apply to all signing times. Use this to compensate for clock skew when your system may be out of sync with the service time. Note that this configuration option can only be applied to the global
AWS.config
object and cannot be overridden in service-specific configuration. Defaults to 0 milliseconds. -
signatureVersion
(String)
—
the signature version to sign requests with (overriding the API configuration). Possible values are: 'v2', 'v3', 'v4'.
-
signatureCache
(Boolean)
—
whether the signature to sign requests with (overriding the API configuration) is cached. Only applies to the signature version 'v4'. Defaults to
true
. -
dynamoDbCrc32
(Boolean)
—
whether to validate the CRC32 checksum of HTTP response bodies returned by DynamoDB. Default:
true
. -
useAccelerateEndpoint
(Boolean)
—
Whether to use the S3 Transfer Acceleration endpoint with the S3 service. Default:
false
. -
clientSideMonitoring
(Boolean)
—
whether to collect and publish this client's performance metrics of all its API requests.
-
endpointDiscoveryEnabled
(Boolean|undefined)
—
whether to call operations with endpoints given by service dynamically. Setting this
-
endpointCacheSize
(Number)
—
the size of the global cache storing endpoints from endpoint discovery operations. Once endpoint cache is created, updating this setting cannot change existing cache size. Defaults to 1000
-
hostPrefixEnabled
(Boolean)
—
whether to marshal request parameters to the prefix of hostname. Defaults to
true
. -
stsRegionalEndpoints
('legacy'|'regional')
—
whether to send sts request to global endpoints or regional endpoints. Defaults to 'legacy'.
-
useFipsEndpoint
(Boolean)
—
Enables FIPS compatible endpoints. Defaults to
false
. -
useDualstackEndpoint
(Boolean)
—
Enables IPv6 dualstack endpoint. Defaults to
false
.
Property Details
Method Details
createExperimentTemplate(params = {}, callback) ⇒ AWS.Request
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 Service User Guide.
Service Reference:
Examples:
Calling the createExperimentTemplate operation
var params = {
actions: { /* required */
'<ExperimentTemplateActionName>': {
actionId: 'STRING_VALUE', /* required */
description: 'STRING_VALUE',
parameters: {
'<ExperimentTemplateActionParameterName>': 'STRING_VALUE',
/* '<ExperimentTemplateActionParameterName>': ... */
},
startAfter: [
'STRING_VALUE',
/* more items */
],
targets: {
'<ExperimentTemplateActionTargetName>': 'STRING_VALUE',
/* '<ExperimentTemplateActionTargetName>': ... */
}
},
/* '<ExperimentTemplateActionName>': ... */
},
clientToken: 'STRING_VALUE', /* required */
description: 'STRING_VALUE', /* required */
roleArn: 'STRING_VALUE', /* required */
stopConditions: [ /* required */
{
source: 'STRING_VALUE', /* required */
value: 'STRING_VALUE'
},
/* more items */
],
experimentOptions: {
accountTargeting: single-account | multi-account,
emptyTargetResolutionMode: fail | skip
},
logConfiguration: {
logSchemaVersion: 'NUMBER_VALUE', /* required */
cloudWatchLogsConfiguration: {
logGroupArn: 'STRING_VALUE' /* required */
},
s3Configuration: {
bucketName: 'STRING_VALUE', /* required */
prefix: 'STRING_VALUE'
}
},
tags: {
'<TagKey>': 'STRING_VALUE',
/* '<TagKey>': ... */
},
targets: {
'<ExperimentTemplateTargetName>': {
resourceType: 'STRING_VALUE', /* required */
selectionMode: 'STRING_VALUE', /* required */
filters: [
{
path: 'STRING_VALUE', /* required */
values: [ /* required */
'STRING_VALUE',
/* more items */
]
},
/* more items */
],
parameters: {
'<ExperimentTemplateTargetParameterName>': 'STRING_VALUE',
/* '<ExperimentTemplateTargetParameterName>': ... */
},
resourceArns: [
'STRING_VALUE',
/* more items */
],
resourceTags: {
'<TagKey>': 'STRING_VALUE',
/* '<TagKey>': ... */
}
},
/* '<ExperimentTemplateTargetName>': ... */
}
};
fis.createExperimentTemplate(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
clientToken
— (String
)Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
If a token is not provided, the SDK will use a version 4 UUID.description
— (String
)A description for the experiment template.
stopConditions
— (Array<map>
)The stop conditions.
source
— required — (String
)The source for the stop condition. Specify
aws:cloudwatch:alarm
if the stop condition is defined by a CloudWatch alarm. Specifynone
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.
targets
— (map<map>
)The targets for the experiment.
resourceType
— required — (String
)The resource type. The resource type must be supported for the specified action.
resourceArns
— (Array<String>
)The Amazon Resource Names (ARNs) of the resources.
resourceTags
— (map<String>
)The tags for the target resources.
filters
— (Array<map>
)The filters to apply to identify target resources using specific attributes.
path
— required — (String
)The attribute path for the filter.
values
— required — (Array<String>
)The attribute values for the filter.
selectionMode
— required — (String
)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
— (map<String>
)The resource type parameters.
actions
— (map<map>
)The actions for the experiment.
actionId
— required — (String
)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
— (map<String>
)The parameters for the action, if applicable.
targets
— (map<String>
)The targets for the action.
startAfter
— (Array<String>
)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.
roleArn
— (String
)The Amazon Resource Name (ARN) of an IAM role that grants the FIS service permission to perform service actions on your behalf.
tags
— (map<String>
)The tags to apply to the experiment template.
logConfiguration
— (map
)The configuration for experiment logging.
cloudWatchLogsConfiguration
— (map
)The configuration for experiment logging to Amazon CloudWatch Logs.
logGroupArn
— required — (String
)The Amazon Resource Name (ARN) of the destination Amazon CloudWatch Logs log group.
s3Configuration
— (map
)The configuration for experiment logging to Amazon S3.
bucketName
— required — (String
)The name of the destination bucket.
prefix
— (String
)The bucket prefix.
logSchemaVersion
— required — (Integer
)The schema version.
experimentOptions
— (map
)The experiment options for the experiment template.
accountTargeting
— (String
)Specifies the account targeting setting for experiment options.
Possible values include:"single-account"
"multi-account"
emptyTargetResolutionMode
— (String
)Specifies the empty target resolution mode for experiment options.
Possible values include:"fail"
"skip"
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:experimentTemplate
— (map
)Information about the experiment template.
id
— (String
)The ID of the experiment template.
arn
— (String
)The Amazon Resource Name (ARN) of the experiment template.
description
— (String
)The description for the experiment template.
targets
— (map<map>
)The targets for the experiment.
resourceType
— (String
)The resource type.
resourceArns
— (Array<String>
)The Amazon Resource Names (ARNs) of the targets.
resourceTags
— (map<String>
)The tags for the target resources.
filters
— (Array<map>
)The filters to apply to identify target resources using specific attributes.
path
— (String
)The attribute path for the filter.
values
— (Array<String>
)The attribute values for the filter.
selectionMode
— (String
)Scopes the identified resources to a specific count or percentage.
parameters
— (map<String>
)The resource type parameters.
actions
— (map<map>
)The actions for the experiment.
actionId
— (String
)The ID of the action.
description
— (String
)A description for the action.
parameters
— (map<String>
)The parameters for the action.
targets
— (map<String>
)The targets for the action.
startAfter
— (Array<String>
)The name of the action that must be completed before the current action starts.
stopConditions
— (Array<map>
)The stop conditions for the experiment.
source
— (String
)The source for the stop condition.
value
— (String
)The Amazon Resource Name (ARN) of the CloudWatch alarm, if applicable.
creationTime
— (Date
)The time the experiment template was created.
lastUpdateTime
— (Date
)The time the experiment template was last updated.
roleArn
— (String
)The Amazon Resource Name (ARN) of an IAM role.
tags
— (map<String>
)The tags for the experiment template.
logConfiguration
— (map
)The configuration for experiment logging.
cloudWatchLogsConfiguration
— (map
)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
— (map
)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
— (map
)The experiment options for an experiment template.
accountTargeting
— (String
)The account targeting setting for an experiment template.
Possible values include:"single-account"
"multi-account"
emptyTargetResolutionMode
— (String
)The empty target resolution mode for an experiment template.
Possible values include:"fail"
"skip"
targetAccountConfigurationsCount
— (Integer
)The count of target account configurations for the experiment template.
-
(AWS.Response)
—
Returns:
createTargetAccountConfiguration(params = {}, callback) ⇒ AWS.Request
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 Service User Guide.
Service Reference:
Examples:
Calling the createTargetAccountConfiguration operation
var params = {
accountId: 'STRING_VALUE', /* required */
experimentTemplateId: 'STRING_VALUE', /* required */
roleArn: 'STRING_VALUE', /* required */
clientToken: 'STRING_VALUE',
description: 'STRING_VALUE'
};
fis.createTargetAccountConfiguration(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
clientToken
— (String
)Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
If a token is not provided, the SDK will use a version 4 UUID.experimentTemplateId
— (String
)The experiment template ID.
accountId
— (String
)The Amazon Web Services account ID of the target account.
roleArn
— (String
)The Amazon Resource Name (ARN) of an IAM role for the target account.
description
— (String
)The description of the target account.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:targetAccountConfiguration
— (map
)Information about the target account configuration.
roleArn
— (String
)The Amazon Resource Name (ARN) of an IAM role for the target account.
accountId
— (String
)The Amazon Web Services account ID of the target account.
description
— (String
)The description of the target account.
-
(AWS.Response)
—
Returns:
deleteExperimentTemplate(params = {}, callback) ⇒ AWS.Request
Deletes the specified experiment template.
Service Reference:
Examples:
Calling the deleteExperimentTemplate operation
var params = {
id: 'STRING_VALUE' /* required */
};
fis.deleteExperimentTemplate(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
id
— (String
)The ID of the experiment template.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:experimentTemplate
— (map
)Information about the experiment template.
id
— (String
)The ID of the experiment template.
arn
— (String
)The Amazon Resource Name (ARN) of the experiment template.
description
— (String
)The description for the experiment template.
targets
— (map<map>
)The targets for the experiment.
resourceType
— (String
)The resource type.
resourceArns
— (Array<String>
)The Amazon Resource Names (ARNs) of the targets.
resourceTags
— (map<String>
)The tags for the target resources.
filters
— (Array<map>
)The filters to apply to identify target resources using specific attributes.
path
— (String
)The attribute path for the filter.
values
— (Array<String>
)The attribute values for the filter.
selectionMode
— (String
)Scopes the identified resources to a specific count or percentage.
parameters
— (map<String>
)The resource type parameters.
actions
— (map<map>
)The actions for the experiment.
actionId
— (String
)The ID of the action.
description
— (String
)A description for the action.
parameters
— (map<String>
)The parameters for the action.
targets
— (map<String>
)The targets for the action.
startAfter
— (Array<String>
)The name of the action that must be completed before the current action starts.
stopConditions
— (Array<map>
)The stop conditions for the experiment.
source
— (String
)The source for the stop condition.
value
— (String
)The Amazon Resource Name (ARN) of the CloudWatch alarm, if applicable.
creationTime
— (Date
)The time the experiment template was created.
lastUpdateTime
— (Date
)The time the experiment template was last updated.
roleArn
— (String
)The Amazon Resource Name (ARN) of an IAM role.
tags
— (map<String>
)The tags for the experiment template.
logConfiguration
— (map
)The configuration for experiment logging.
cloudWatchLogsConfiguration
— (map
)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
— (map
)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
— (map
)The experiment options for an experiment template.
accountTargeting
— (String
)The account targeting setting for an experiment template.
Possible values include:"single-account"
"multi-account"
emptyTargetResolutionMode
— (String
)The empty target resolution mode for an experiment template.
Possible values include:"fail"
"skip"
targetAccountConfigurationsCount
— (Integer
)The count of target account configurations for the experiment template.
-
(AWS.Response)
—
Returns:
deleteTargetAccountConfiguration(params = {}, callback) ⇒ AWS.Request
Deletes the specified target account configuration of the experiment template.
Service Reference:
Examples:
Calling the deleteTargetAccountConfiguration operation
var params = {
accountId: 'STRING_VALUE', /* required */
experimentTemplateId: 'STRING_VALUE' /* required */
};
fis.deleteTargetAccountConfiguration(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
experimentTemplateId
— (String
)The ID of the experiment template.
accountId
— (String
)The Amazon Web Services account ID of the target account.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:targetAccountConfiguration
— (map
)Information about the target account configuration.
roleArn
— (String
)The Amazon Resource Name (ARN) of an IAM role for the target account.
accountId
— (String
)The Amazon Web Services account ID of the target account.
description
— (String
)The description of the target account.
-
(AWS.Response)
—
Returns:
getAction(params = {}, callback) ⇒ AWS.Request
Gets information about the specified FIS action.
Service Reference:
Examples:
Calling the getAction operation
var params = {
id: 'STRING_VALUE' /* required */
};
fis.getAction(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
id
— (String
)The ID of the action.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:action
— (map
)Information about the action.
id
— (String
)The ID of the action.
arn
— (String
)The Amazon Resource Name (ARN) of the action.
description
— (String
)The description for the action.
parameters
— (map<map>
)The action parameters, if applicable.
description
— (String
)The parameter description.
required
— (Boolean
)Indicates whether the parameter is required.
targets
— (map<map>
)The supported targets for the action.
resourceType
— (String
)The resource type of the target.
tags
— (map<String>
)The tags for the action.
-
(AWS.Response)
—
Returns:
getExperiment(params = {}, callback) ⇒ AWS.Request
Gets information about the specified experiment.
Service Reference:
Examples:
Calling the getExperiment operation
var params = {
id: 'STRING_VALUE' /* required */
};
fis.getExperiment(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
id
— (String
)The ID of the experiment.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:experiment
— (map
)Information about the experiment.
id
— (String
)The ID of the experiment.
arn
— (String
)The Amazon Resource Name (ARN) 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
— (map
)The state of the experiment.
status
— (String
)The state of the experiment.
Possible values include:"pending"
"initiating"
"running"
"completed"
"stopping"
"stopped"
"failed"
"cancelled"
reason
— (String
)The reason for the state.
error
— (map
)The error information of the experiment when the action has
failed
.accountId
— (String
)The Amazon Web Services Account ID where the experiment failure occurred.
code
— (String
)The error code for the failed experiment.
location
— (String
)Context for the section of the experiment template that failed.
targets
— (map<map>
)The targets for the experiment.
resourceType
— (String
)The resource type.
resourceArns
— (Array<String>
)The Amazon Resource Names (ARNs) of the resources.
resourceTags
— (map<String>
)The tags for the target resources.
filters
— (Array<map>
)The filters to apply to identify target resources using specific attributes.
path
— (String
)The attribute path for the filter.
values
— (Array<String>
)The attribute values for the filter.
selectionMode
— (String
)Scopes the identified resources to a specific count or percentage.
parameters
— (map<String>
)The resource type parameters.
actions
— (map<map>
)The actions for the experiment.
actionId
— (String
)The ID of the action.
description
— (String
)The description for the action.
parameters
— (map<String>
)The parameters for the action.
targets
— (map<String>
)The targets for the action.
startAfter
— (Array<String>
)The name of the action that must be completed before this action starts.
state
— (map
)The state of the action.
status
— (String
)The state of the action.
Possible values include:"pending"
"initiating"
"running"
"completed"
"cancelled"
"stopping"
"stopped"
"failed"
"skipped"
reason
— (String
)The reason for the state.
startTime
— (Date
)The time that the action started.
endTime
— (Date
)The time that the action ended.
stopConditions
— (Array<map>
)The stop conditions for the experiment.
source
— (String
)The source for the stop condition.
value
— (String
)The Amazon Resource Name (ARN) of the CloudWatch alarm, if applicable.
creationTime
— (Date
)The time that the experiment was created.
startTime
— (Date
)The time that the experiment started.
endTime
— (Date
)The time that the experiment ended.
tags
— (map<String>
)The tags for the experiment.
logConfiguration
— (map
)The configuration for experiment logging.
cloudWatchLogsConfiguration
— (map
)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
— (map
)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
— (map
)The experiment options for the experiment.
accountTargeting
— (String
)The account targeting setting for an experiment.
Possible values include:"single-account"
"multi-account"
emptyTargetResolutionMode
— (String
)The empty target resolution mode for an experiment.
Possible values include:"fail"
"skip"
actionsMode
— (String
)The actions mode of the experiment that is set from the StartExperiment API command.
Possible values include:"skip-all"
"run-all"
targetAccountConfigurationsCount
— (Integer
)The count of target account configurations for the experiment.
-
(AWS.Response)
—
Returns:
getExperimentTargetAccountConfiguration(params = {}, callback) ⇒ AWS.Request
Gets information about the specified target account configuration of the experiment.
Service Reference:
Examples:
Calling the getExperimentTargetAccountConfiguration operation
var params = {
accountId: 'STRING_VALUE', /* required */
experimentId: 'STRING_VALUE' /* required */
};
fis.getExperimentTargetAccountConfiguration(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
experimentId
— (String
)The ID of the experiment.
accountId
— (String
)The Amazon Web Services account ID of the target account.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:targetAccountConfiguration
— (map
)Information about the target account configuration.
roleArn
— (String
)The Amazon Resource Name (ARN) of an IAM role for the target account.
accountId
— (String
)The Amazon Web Services account ID of the target account.
description
— (String
)The description of the target account.
-
(AWS.Response)
—
Returns:
getExperimentTemplate(params = {}, callback) ⇒ AWS.Request
Gets information about the specified experiment template.
Service Reference:
Examples:
Calling the getExperimentTemplate operation
var params = {
id: 'STRING_VALUE' /* required */
};
fis.getExperimentTemplate(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
id
— (String
)The ID of the experiment template.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:experimentTemplate
— (map
)Information about the experiment template.
id
— (String
)The ID of the experiment template.
arn
— (String
)The Amazon Resource Name (ARN) of the experiment template.
description
— (String
)The description for the experiment template.
targets
— (map<map>
)The targets for the experiment.
resourceType
— (String
)The resource type.
resourceArns
— (Array<String>
)The Amazon Resource Names (ARNs) of the targets.
resourceTags
— (map<String>
)The tags for the target resources.
filters
— (Array<map>
)The filters to apply to identify target resources using specific attributes.
path
— (String
)The attribute path for the filter.
values
— (Array<String>
)The attribute values for the filter.
selectionMode
— (String
)Scopes the identified resources to a specific count or percentage.
parameters
— (map<String>
)The resource type parameters.
actions
— (map<map>
)The actions for the experiment.
actionId
— (String
)The ID of the action.
description
— (String
)A description for the action.
parameters
— (map<String>
)The parameters for the action.
targets
— (map<String>
)The targets for the action.
startAfter
— (Array<String>
)The name of the action that must be completed before the current action starts.
stopConditions
— (Array<map>
)The stop conditions for the experiment.
source
— (String
)The source for the stop condition.
value
— (String
)The Amazon Resource Name (ARN) of the CloudWatch alarm, if applicable.
creationTime
— (Date
)The time the experiment template was created.
lastUpdateTime
— (Date
)The time the experiment template was last updated.
roleArn
— (String
)The Amazon Resource Name (ARN) of an IAM role.
tags
— (map<String>
)The tags for the experiment template.
logConfiguration
— (map
)The configuration for experiment logging.
cloudWatchLogsConfiguration
— (map
)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
— (map
)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
— (map
)The experiment options for an experiment template.
accountTargeting
— (String
)The account targeting setting for an experiment template.
Possible values include:"single-account"
"multi-account"
emptyTargetResolutionMode
— (String
)The empty target resolution mode for an experiment template.
Possible values include:"fail"
"skip"
targetAccountConfigurationsCount
— (Integer
)The count of target account configurations for the experiment template.
-
(AWS.Response)
—
Returns:
getSafetyLever(params = {}, callback) ⇒ AWS.Request
Gets information about the specified safety lever.
Service Reference:
Examples:
Calling the getSafetyLever operation
var params = {
id: 'STRING_VALUE' /* required */
};
fis.getSafetyLever(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
id
— (String
)The ID of the safety lever.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:safetyLever
— (map
)Information about the safety lever.
id
— (String
)The ID of the safety lever.
arn
— (String
)The Amazon Resource Name (ARN) of the safety lever.
state
— (map
)The state of the safety lever.
status
— (String
)The state of the safety lever.
Possible values include:"disengaged"
"engaged"
"engaging"
reason
— (String
)The reason for the state of the safety lever.
-
(AWS.Response)
—
Returns:
getTargetAccountConfiguration(params = {}, callback) ⇒ AWS.Request
Gets information about the specified target account configuration of the experiment template.
Service Reference:
Examples:
Calling the getTargetAccountConfiguration operation
var params = {
accountId: 'STRING_VALUE', /* required */
experimentTemplateId: 'STRING_VALUE' /* required */
};
fis.getTargetAccountConfiguration(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
experimentTemplateId
— (String
)The ID of the experiment template.
accountId
— (String
)The Amazon Web Services account ID of the target account.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:targetAccountConfiguration
— (map
)Information about the target account configuration.
roleArn
— (String
)The Amazon Resource Name (ARN) of an IAM role for the target account.
accountId
— (String
)The Amazon Web Services account ID of the target account.
description
— (String
)The description of the target account.
-
(AWS.Response)
—
Returns:
getTargetResourceType(params = {}, callback) ⇒ AWS.Request
Gets information about the specified resource type.
Service Reference:
Examples:
Calling the getTargetResourceType operation
var params = {
resourceType: 'STRING_VALUE' /* required */
};
fis.getTargetResourceType(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
resourceType
— (String
)The resource type.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:targetResourceType
— (map
)Information about the resource type.
resourceType
— (String
)The resource type.
description
— (String
)A description of the resource type.
parameters
— (map<map>
)The parameters for the resource type.
description
— (String
)A description of the parameter.
required
— (Boolean
)Indicates whether the parameter is required.
-
(AWS.Response)
—
Returns:
listActions(params = {}, callback) ⇒ AWS.Request
Lists the available FIS actions.
Service Reference:
Examples:
Calling the listActions operation
var params = {
maxResults: 'NUMBER_VALUE',
nextToken: 'STRING_VALUE'
};
fis.listActions(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
maxResults
— (Integer
)The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned
nextToken
value.nextToken
— (String
)The token for the next page of results.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:actions
— (Array<map>
)The actions.
id
— (String
)The ID of the action.
arn
— (String
)The Amazon Resource Name (ARN) of the action.
description
— (String
)The description for the action.
targets
— (map<map>
)The targets for the action.
resourceType
— (String
)The resource type of the target.
tags
— (map<String>
)The tags for the action.
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.
-
(AWS.Response)
—
Returns:
listExperimentResolvedTargets(params = {}, callback) ⇒ AWS.Request
Lists the resolved targets information of the specified experiment.
Service Reference:
Examples:
Calling the listExperimentResolvedTargets operation
var params = {
experimentId: 'STRING_VALUE', /* required */
maxResults: 'NUMBER_VALUE',
nextToken: 'STRING_VALUE',
targetName: 'STRING_VALUE'
};
fis.listExperimentResolvedTargets(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
experimentId
— (String
)The ID of the experiment.
maxResults
— (Integer
)The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.
nextToken
— (String
)The token for the next page of results.
targetName
— (String
)The name of the target.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:resolvedTargets
— (Array<map>
)The resolved targets.
resourceType
— (String
)The resource type of the target.
targetName
— (String
)The name of the target.
targetInformation
— (map<String>
)Information about the target.
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.
-
(AWS.Response)
—
Returns:
listExperiments(params = {}, callback) ⇒ AWS.Request
Lists your experiments.
Service Reference:
Examples:
Calling the listExperiments operation
var params = {
experimentTemplateId: 'STRING_VALUE',
maxResults: 'NUMBER_VALUE',
nextToken: 'STRING_VALUE'
};
fis.listExperiments(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
maxResults
— (Integer
)The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned
nextToken
value.nextToken
— (String
)The token for the next page of results.
experimentTemplateId
— (String
)The ID of the experiment template.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:experiments
— (Array<map>
)The experiments.
id
— (String
)The ID of the experiment.
arn
— (String
)The Amazon Resource Name (ARN) of the experiment.
experimentTemplateId
— (String
)The ID of the experiment template.
state
— (map
)The state of the experiment.
status
— (String
)The state of the experiment.
Possible values include:"pending"
"initiating"
"running"
"completed"
"stopping"
"stopped"
"failed"
"cancelled"
reason
— (String
)The reason for the state.
error
— (map
)The error information of the experiment when the action has
failed
.accountId
— (String
)The Amazon Web Services Account ID where the experiment failure occurred.
code
— (String
)The error code for the failed experiment.
location
— (String
)Context for the section of the experiment template that failed.
creationTime
— (Date
)The time that the experiment was created.
tags
— (map<String>
)The tags for the experiment.
experimentOptions
— (map
)The experiment options for the experiment.
accountTargeting
— (String
)The account targeting setting for an experiment.
Possible values include:"single-account"
"multi-account"
emptyTargetResolutionMode
— (String
)The empty target resolution mode for an experiment.
Possible values include:"fail"
"skip"
actionsMode
— (String
)The actions mode of the experiment that is set from the StartExperiment API command.
Possible values include:"skip-all"
"run-all"
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.
-
(AWS.Response)
—
Returns:
listExperimentTargetAccountConfigurations(params = {}, callback) ⇒ AWS.Request
Lists the target account configurations of the specified experiment.
Service Reference:
Examples:
Calling the listExperimentTargetAccountConfigurations operation
var params = {
experimentId: 'STRING_VALUE', /* required */
nextToken: 'STRING_VALUE'
};
fis.listExperimentTargetAccountConfigurations(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
experimentId
— (String
)The ID of the experiment.
nextToken
— (String
)The token for the next page of results.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:targetAccountConfigurations
— (Array<map>
)The target account configurations.
roleArn
— (String
)The Amazon Resource Name (ARN) of an IAM role for the target account.
accountId
— (String
)The Amazon Web Services 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.
-
(AWS.Response)
—
Returns:
listExperimentTemplates(params = {}, callback) ⇒ AWS.Request
Lists your experiment templates.
Service Reference:
Examples:
Calling the listExperimentTemplates operation
var params = {
maxResults: 'NUMBER_VALUE',
nextToken: 'STRING_VALUE'
};
fis.listExperimentTemplates(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
maxResults
— (Integer
)The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned
nextToken
value.nextToken
— (String
)The token for the next page of results.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:experimentTemplates
— (Array<map>
)The experiment templates.
id
— (String
)The ID of the experiment template.
arn
— (String
)The Amazon Resource Name (ARN) of the experiment template.
description
— (String
)The description of the experiment template.
creationTime
— (Date
)The time that the experiment template was created.
lastUpdateTime
— (Date
)The time that the experiment template was last updated.
tags
— (map<String>
)The tags for the experiment template.
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.
-
(AWS.Response)
—
Returns:
listTagsForResource(params = {}, callback) ⇒ AWS.Request
Lists the tags for the specified resource.
Service Reference:
Examples:
Calling the listTagsForResource operation
var params = {
resourceArn: 'STRING_VALUE' /* required */
};
fis.listTagsForResource(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
resourceArn
— (String
)The Amazon Resource Name (ARN) of the resource.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:tags
— (map<String>
)The tags for the resource.
-
(AWS.Response)
—
Returns:
listTargetAccountConfigurations(params = {}, callback) ⇒ AWS.Request
Lists the target account configurations of the specified experiment template.
Service Reference:
Examples:
Calling the listTargetAccountConfigurations operation
var params = {
experimentTemplateId: 'STRING_VALUE', /* required */
maxResults: 'NUMBER_VALUE',
nextToken: 'STRING_VALUE'
};
fis.listTargetAccountConfigurations(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
experimentTemplateId
— (String
)The ID of the experiment template.
maxResults
— (Integer
)The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.
nextToken
— (String
)The token for the next page of results.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:targetAccountConfigurations
— (Array<map>
)The target account configurations.
roleArn
— (String
)The Amazon Resource Name (ARN) of an IAM role for the target account.
accountId
— (String
)The Amazon Web Services 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.
-
(AWS.Response)
—
Returns:
listTargetResourceTypes(params = {}, callback) ⇒ AWS.Request
Lists the target resource types.
Service Reference:
Examples:
Calling the listTargetResourceTypes operation
var params = {
maxResults: 'NUMBER_VALUE',
nextToken: 'STRING_VALUE'
};
fis.listTargetResourceTypes(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
maxResults
— (Integer
)The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned
nextToken
value.nextToken
— (String
)The token for the next page of results.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:targetResourceTypes
— (Array<map>
)The target resource types.
resourceType
— (String
)The resource type.
description
— (String
)A description of the resource type.
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.
-
(AWS.Response)
—
Returns:
startExperiment(params = {}, callback) ⇒ AWS.Request
Starts running an experiment from the specified experiment template.
Service Reference:
Examples:
Calling the startExperiment operation
var params = {
clientToken: 'STRING_VALUE', /* required */
experimentTemplateId: 'STRING_VALUE', /* required */
experimentOptions: {
actionsMode: skip-all | run-all
},
tags: {
'<TagKey>': 'STRING_VALUE',
/* '<TagKey>': ... */
}
};
fis.startExperiment(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
clientToken
— (String
)Unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
If a token is not provided, the SDK will use a version 4 UUID.experimentTemplateId
— (String
)The ID of the experiment template.
experimentOptions
— (map
)The experiment options for running the experiment.
actionsMode
— (String
)Specifies the actions mode for experiment options.
Possible values include:"skip-all"
"run-all"
tags
— (map<String>
)The tags to apply to the experiment.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:experiment
— (map
)Information about the experiment.
id
— (String
)The ID of the experiment.
arn
— (String
)The Amazon Resource Name (ARN) 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
— (map
)The state of the experiment.
status
— (String
)The state of the experiment.
Possible values include:"pending"
"initiating"
"running"
"completed"
"stopping"
"stopped"
"failed"
"cancelled"
reason
— (String
)The reason for the state.
error
— (map
)The error information of the experiment when the action has
failed
.accountId
— (String
)The Amazon Web Services Account ID where the experiment failure occurred.
code
— (String
)The error code for the failed experiment.
location
— (String
)Context for the section of the experiment template that failed.
targets
— (map<map>
)The targets for the experiment.
resourceType
— (String
)The resource type.
resourceArns
— (Array<String>
)The Amazon Resource Names (ARNs) of the resources.
resourceTags
— (map<String>
)The tags for the target resources.
filters
— (Array<map>
)The filters to apply to identify target resources using specific attributes.
path
— (String
)The attribute path for the filter.
values
— (Array<String>
)The attribute values for the filter.
selectionMode
— (String
)Scopes the identified resources to a specific count or percentage.
parameters
— (map<String>
)The resource type parameters.
actions
— (map<map>
)The actions for the experiment.
actionId
— (String
)The ID of the action.
description
— (String
)The description for the action.
parameters
— (map<String>
)The parameters for the action.
targets
— (map<String>
)The targets for the action.
startAfter
— (Array<String>
)The name of the action that must be completed before this action starts.
state
— (map
)The state of the action.
status
— (String
)The state of the action.
Possible values include:"pending"
"initiating"
"running"
"completed"
"cancelled"
"stopping"
"stopped"
"failed"
"skipped"
reason
— (String
)The reason for the state.
startTime
— (Date
)The time that the action started.
endTime
— (Date
)The time that the action ended.
stopConditions
— (Array<map>
)The stop conditions for the experiment.
source
— (String
)The source for the stop condition.
value
— (String
)The Amazon Resource Name (ARN) of the CloudWatch alarm, if applicable.
creationTime
— (Date
)The time that the experiment was created.
startTime
— (Date
)The time that the experiment started.
endTime
— (Date
)The time that the experiment ended.
tags
— (map<String>
)The tags for the experiment.
logConfiguration
— (map
)The configuration for experiment logging.
cloudWatchLogsConfiguration
— (map
)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
— (map
)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
— (map
)The experiment options for the experiment.
accountTargeting
— (String
)The account targeting setting for an experiment.
Possible values include:"single-account"
"multi-account"
emptyTargetResolutionMode
— (String
)The empty target resolution mode for an experiment.
Possible values include:"fail"
"skip"
actionsMode
— (String
)The actions mode of the experiment that is set from the StartExperiment API command.
Possible values include:"skip-all"
"run-all"
targetAccountConfigurationsCount
— (Integer
)The count of target account configurations for the experiment.
-
(AWS.Response)
—
Returns:
stopExperiment(params = {}, callback) ⇒ AWS.Request
Stops the specified experiment.
Service Reference:
Examples:
Calling the stopExperiment operation
var params = {
id: 'STRING_VALUE' /* required */
};
fis.stopExperiment(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
id
— (String
)The ID of the experiment.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:experiment
— (map
)Information about the experiment.
id
— (String
)The ID of the experiment.
arn
— (String
)The Amazon Resource Name (ARN) 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
— (map
)The state of the experiment.
status
— (String
)The state of the experiment.
Possible values include:"pending"
"initiating"
"running"
"completed"
"stopping"
"stopped"
"failed"
"cancelled"
reason
— (String
)The reason for the state.
error
— (map
)The error information of the experiment when the action has
failed
.accountId
— (String
)The Amazon Web Services Account ID where the experiment failure occurred.
code
— (String
)The error code for the failed experiment.
location
— (String
)Context for the section of the experiment template that failed.
targets
— (map<map>
)The targets for the experiment.
resourceType
— (String
)The resource type.
resourceArns
— (Array<String>
)The Amazon Resource Names (ARNs) of the resources.
resourceTags
— (map<String>
)The tags for the target resources.
filters
— (Array<map>
)The filters to apply to identify target resources using specific attributes.
path
— (String
)The attribute path for the filter.
values
— (Array<String>
)The attribute values for the filter.
selectionMode
— (String
)Scopes the identified resources to a specific count or percentage.
parameters
— (map<String>
)The resource type parameters.
actions
— (map<map>
)The actions for the experiment.
actionId
— (String
)The ID of the action.
description
— (String
)The description for the action.
parameters
— (map<String>
)The parameters for the action.
targets
— (map<String>
)The targets for the action.
startAfter
— (Array<String>
)The name of the action that must be completed before this action starts.
state
— (map
)The state of the action.
status
— (String
)The state of the action.
Possible values include:"pending"
"initiating"
"running"
"completed"
"cancelled"
"stopping"
"stopped"
"failed"
"skipped"
reason
— (String
)The reason for the state.
startTime
— (Date
)The time that the action started.
endTime
— (Date
)The time that the action ended.
stopConditions
— (Array<map>
)The stop conditions for the experiment.
source
— (String
)The source for the stop condition.
value
— (String
)The Amazon Resource Name (ARN) of the CloudWatch alarm, if applicable.
creationTime
— (Date
)The time that the experiment was created.
startTime
— (Date
)The time that the experiment started.
endTime
— (Date
)The time that the experiment ended.
tags
— (map<String>
)The tags for the experiment.
logConfiguration
— (map
)The configuration for experiment logging.
cloudWatchLogsConfiguration
— (map
)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
— (map
)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
— (map
)The experiment options for the experiment.
accountTargeting
— (String
)The account targeting setting for an experiment.
Possible values include:"single-account"
"multi-account"
emptyTargetResolutionMode
— (String
)The empty target resolution mode for an experiment.
Possible values include:"fail"
"skip"
actionsMode
— (String
)The actions mode of the experiment that is set from the StartExperiment API command.
Possible values include:"skip-all"
"run-all"
targetAccountConfigurationsCount
— (Integer
)The count of target account configurations for the experiment.
-
(AWS.Response)
—
Returns:
tagResource(params = {}, callback) ⇒ AWS.Request
Applies the specified tags to the specified resource.
Service Reference:
Examples:
Calling the tagResource operation
var params = {
resourceArn: 'STRING_VALUE', /* required */
tags: { /* required */
'<TagKey>': 'STRING_VALUE',
/* '<TagKey>': ... */
}
};
fis.tagResource(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
resourceArn
— (String
)The Amazon Resource Name (ARN) of the resource.
tags
— (map<String>
)The tags for the resource.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs.
-
(AWS.Response)
—
Returns:
untagResource(params = {}, callback) ⇒ AWS.Request
Removes the specified tags from the specified resource.
Service Reference:
Examples:
Calling the untagResource operation
var params = {
resourceArn: 'STRING_VALUE', /* required */
tagKeys: [
'STRING_VALUE',
/* more items */
]
};
fis.untagResource(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
resourceArn
— (String
)The Amazon Resource Name (ARN) of the resource.
tagKeys
— (Array<String>
)The tag keys to remove.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs.
-
(AWS.Response)
—
Returns:
updateExperimentTemplate(params = {}, callback) ⇒ AWS.Request
Updates the specified experiment template.
Service Reference:
Examples:
Calling the updateExperimentTemplate operation
var params = {
id: 'STRING_VALUE', /* required */
actions: {
'<ExperimentTemplateActionName>': {
actionId: 'STRING_VALUE',
description: 'STRING_VALUE',
parameters: {
'<ExperimentTemplateActionParameterName>': 'STRING_VALUE',
/* '<ExperimentTemplateActionParameterName>': ... */
},
startAfter: [
'STRING_VALUE',
/* more items */
],
targets: {
'<ExperimentTemplateActionTargetName>': 'STRING_VALUE',
/* '<ExperimentTemplateActionTargetName>': ... */
}
},
/* '<ExperimentTemplateActionName>': ... */
},
description: 'STRING_VALUE',
experimentOptions: {
emptyTargetResolutionMode: fail | skip
},
logConfiguration: {
cloudWatchLogsConfiguration: {
logGroupArn: 'STRING_VALUE' /* required */
},
logSchemaVersion: 'NUMBER_VALUE',
s3Configuration: {
bucketName: 'STRING_VALUE', /* required */
prefix: 'STRING_VALUE'
}
},
roleArn: 'STRING_VALUE',
stopConditions: [
{
source: 'STRING_VALUE', /* required */
value: 'STRING_VALUE'
},
/* more items */
],
targets: {
'<ExperimentTemplateTargetName>': {
resourceType: 'STRING_VALUE', /* required */
selectionMode: 'STRING_VALUE', /* required */
filters: [
{
path: 'STRING_VALUE', /* required */
values: [ /* required */
'STRING_VALUE',
/* more items */
]
},
/* more items */
],
parameters: {
'<ExperimentTemplateTargetParameterName>': 'STRING_VALUE',
/* '<ExperimentTemplateTargetParameterName>': ... */
},
resourceArns: [
'STRING_VALUE',
/* more items */
],
resourceTags: {
'<TagKey>': 'STRING_VALUE',
/* '<TagKey>': ... */
}
},
/* '<ExperimentTemplateTargetName>': ... */
}
};
fis.updateExperimentTemplate(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
id
— (String
)The ID of the experiment template.
description
— (String
)A description for the template.
stopConditions
— (Array<map>
)The stop conditions for the experiment.
source
— required — (String
)The source for the stop condition. Specify
aws:cloudwatch:alarm
if the stop condition is defined by a CloudWatch alarm. Specifynone
if there is no stop condition.value
— (String
)The Amazon Resource Name (ARN) of the CloudWatch alarm.
targets
— (map<map>
)The targets for the experiment.
resourceType
— required — (String
)The resource type. The resource type must be supported for the specified action.
resourceArns
— (Array<String>
)The Amazon Resource Names (ARNs) of the targets.
resourceTags
— (map<String>
)The tags for the target resources.
filters
— (Array<map>
)The filters to apply to identify target resources using specific attributes.
path
— required — (String
)The attribute path for the filter.
values
— required — (Array<String>
)The attribute values for the filter.
selectionMode
— required — (String
)Scopes the identified resources to a specific count or percentage.
parameters
— (map<String>
)The resource type parameters.
actions
— (map<map>
)The actions for the experiment.
actionId
— (String
)The ID of the action.
description
— (String
)A description for the action.
parameters
— (map<String>
)The parameters for the action, if applicable.
targets
— (map<String>
)The targets for the action.
startAfter
— (Array<String>
)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.
roleArn
— (String
)The Amazon Resource Name (ARN) of an IAM role that grants the FIS service permission to perform service actions on your behalf.
logConfiguration
— (map
)The configuration for experiment logging.
cloudWatchLogsConfiguration
— (map
)The configuration for experiment logging to Amazon CloudWatch Logs.
logGroupArn
— required — (String
)The Amazon Resource Name (ARN) of the destination Amazon CloudWatch Logs log group.
s3Configuration
— (map
)The configuration for experiment logging to Amazon S3.
bucketName
— required — (String
)The name of the destination bucket.
prefix
— (String
)The bucket prefix.
logSchemaVersion
— (Integer
)The schema version.
experimentOptions
— (map
)The experiment options for the experiment template.
emptyTargetResolutionMode
— (String
)The empty target resolution mode of the experiment template.
Possible values include:"fail"
"skip"
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:experimentTemplate
— (map
)Information about the experiment template.
id
— (String
)The ID of the experiment template.
arn
— (String
)The Amazon Resource Name (ARN) of the experiment template.
description
— (String
)The description for the experiment template.
targets
— (map<map>
)The targets for the experiment.
resourceType
— (String
)The resource type.
resourceArns
— (Array<String>
)The Amazon Resource Names (ARNs) of the targets.
resourceTags
— (map<String>
)The tags for the target resources.
filters
— (Array<map>
)The filters to apply to identify target resources using specific attributes.
path
— (String
)The attribute path for the filter.
values
— (Array<String>
)The attribute values for the filter.
selectionMode
— (String
)Scopes the identified resources to a specific count or percentage.
parameters
— (map<String>
)The resource type parameters.
actions
— (map<map>
)The actions for the experiment.
actionId
— (String
)The ID of the action.
description
— (String
)A description for the action.
parameters
— (map<String>
)The parameters for the action.
targets
— (map<String>
)The targets for the action.
startAfter
— (Array<String>
)The name of the action that must be completed before the current action starts.
stopConditions
— (Array<map>
)The stop conditions for the experiment.
source
— (String
)The source for the stop condition.
value
— (String
)The Amazon Resource Name (ARN) of the CloudWatch alarm, if applicable.
creationTime
— (Date
)The time the experiment template was created.
lastUpdateTime
— (Date
)The time the experiment template was last updated.
roleArn
— (String
)The Amazon Resource Name (ARN) of an IAM role.
tags
— (map<String>
)The tags for the experiment template.
logConfiguration
— (map
)The configuration for experiment logging.
cloudWatchLogsConfiguration
— (map
)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
— (map
)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
— (map
)The experiment options for an experiment template.
accountTargeting
— (String
)The account targeting setting for an experiment template.
Possible values include:"single-account"
"multi-account"
emptyTargetResolutionMode
— (String
)The empty target resolution mode for an experiment template.
Possible values include:"fail"
"skip"
targetAccountConfigurationsCount
— (Integer
)The count of target account configurations for the experiment template.
-
(AWS.Response)
—
Returns:
updateSafetyLeverState(params = {}, callback) ⇒ AWS.Request
Updates the specified safety lever state.
Service Reference:
Examples:
Calling the updateSafetyLeverState operation
var params = {
id: 'STRING_VALUE', /* required */
state: { /* required */
reason: 'STRING_VALUE', /* required */
status: disengaged | engaged /* required */
}
};
fis.updateSafetyLeverState(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
id
— (String
)The ID of the safety lever.
state
— (map
)The state of the safety lever.
status
— required — (String
)The updated state of the safety lever.
Possible values include:"disengaged"
"engaged"
reason
— required — (String
)The reason for updating the state of the safety lever.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:safetyLever
— (map
)Information about the safety lever.
id
— (String
)The ID of the safety lever.
arn
— (String
)The Amazon Resource Name (ARN) of the safety lever.
state
— (map
)The state of the safety lever.
status
— (String
)The state of the safety lever.
Possible values include:"disengaged"
"engaged"
"engaging"
reason
— (String
)The reason for the state of the safety lever.
-
(AWS.Response)
—
Returns:
updateTargetAccountConfiguration(params = {}, callback) ⇒ AWS.Request
Updates the target account configuration for the specified experiment template.
Service Reference:
Examples:
Calling the updateTargetAccountConfiguration operation
var params = {
accountId: 'STRING_VALUE', /* required */
experimentTemplateId: 'STRING_VALUE', /* required */
description: 'STRING_VALUE',
roleArn: 'STRING_VALUE'
};
fis.updateTargetAccountConfiguration(params, function(err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Parameters:
-
params
(Object)
(defaults to: {})
—
experimentTemplateId
— (String
)The ID of the experiment template.
accountId
— (String
)The Amazon Web Services account ID of the target account.
roleArn
— (String
)The Amazon Resource Name (ARN) of an IAM role for the target account.
description
— (String
)The description of the target account.
Callback (callback):
-
function(err, data) { ... }
Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.
Context (this):
-
(AWS.Response)
—
the response object containing error, data properties, and the original request object.
Parameters:
-
err
(Error)
—
the error object returned from the request. Set to
null
if the request is successful. -
data
(Object)
—
the de-serialized data returned from the request. Set to
null
if a request error occurs. Thedata
object has the following properties:targetAccountConfiguration
— (map
)Information about the target account configuration.
roleArn
— (String
)The Amazon Resource Name (ARN) of an IAM role for the target account.
accountId
— (String
)The Amazon Web Services account ID of the target account.
description
— (String
)The description of the target account.
-
(AWS.Response)
—
Returns: