awsfis

package
v1.168.0-devpreview Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 9, 2022 License: Apache-2.0 Imports: 6 Imported by: 0

README

AWS::FIS Construct Library

This module is part of the AWS Cloud Development Kit project.

import fis "github.com/aws/aws-cdk-go/awscdk"

There are no official hand-written (L2) constructs for this service yet. Here are some suggestions on how to proceed:

There are no hand-written (L2) constructs for this service yet. However, you can still use the automatically generated L1 constructs, and use this service exactly as you would using CloudFormation directly.

For more information on the resources and properties available for this service, see the CloudFormation documentation for AWS::FIS.

(Read the CDK Contributing Guide and submit an RFC if you are interested in contributing to this construct library.)

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func CfnExperimentTemplate_CFN_RESOURCE_TYPE_NAME

func CfnExperimentTemplate_CFN_RESOURCE_TYPE_NAME() *string

func CfnExperimentTemplate_IsCfnElement

func CfnExperimentTemplate_IsCfnElement(x interface{}) *bool

Returns `true` if a construct is a stack element (i.e. part of the synthesized cloudformation template).

Uses duck-typing instead of `instanceof` to allow stack elements from different versions of this library to be included in the same stack.

Returns: The construct as a stack element or undefined if it is not a stack element. Experimental.

func CfnExperimentTemplate_IsCfnResource

func CfnExperimentTemplate_IsCfnResource(construct constructs.IConstruct) *bool

Check whether the given construct is a CfnResource. Experimental.

func CfnExperimentTemplate_IsConstruct

func CfnExperimentTemplate_IsConstruct(x interface{}) *bool

Return whether the given object is a Construct. Experimental.

func NewCfnExperimentTemplate_Override

func NewCfnExperimentTemplate_Override(c CfnExperimentTemplate, scope awscdk.Construct, id *string, props *CfnExperimentTemplateProps)

Create a new `AWS::FIS::ExperimentTemplate`.

Types

type CfnExperimentTemplate

type CfnExperimentTemplate interface {
	awscdk.CfnResource
	awscdk.IInspectable
	// The actions for the experiment.
	Actions() interface{}
	SetActions(val interface{})
	// The ID of the experiment template.
	AttrId() *string
	// Options for this resource, such as condition, update policy etc.
	// Experimental.
	CfnOptions() awscdk.ICfnResourceOptions
	CfnProperties() *map[string]interface{}
	// AWS resource type.
	// Experimental.
	CfnResourceType() *string
	// Returns: the stack trace of the point where this Resource was created from, sourced
	// from the +metadata+ entry typed +aws:cdk:logicalId+, and with the bottom-most
	// node +internal+ entries filtered.
	// Experimental.
	CreationStack() *[]*string
	// A description for the experiment template.
	Description() *string
	SetDescription(val *string)
	// The configuration for experiment logging.
	LogConfiguration() interface{}
	SetLogConfiguration(val interface{})
	// The logical ID for this CloudFormation stack element.
	//
	// The logical ID of the element
	// is calculated from the path of the resource node in the construct tree.
	//
	// To override this value, use `overrideLogicalId(newLogicalId)`.
	//
	// Returns: the logical ID as a stringified token. This value will only get
	// resolved during synthesis.
	// Experimental.
	LogicalId() *string
	// The construct tree node associated with this construct.
	// Experimental.
	Node() awscdk.ConstructNode
	// Return a string that will be resolved to a CloudFormation `{ Ref }` for this element.
	//
	// If, by any chance, the intrinsic reference of a resource is not a string, you could
	// coerce it to an IResolvable through `Lazy.any({ produce: resource.ref })`.
	// Experimental.
	Ref() *string
	// The Amazon Resource Name (ARN) of an IAM role that grants the AWS FIS service permission to perform service actions on your behalf.
	RoleArn() *string
	SetRoleArn(val *string)
	// The stack in which this element is defined.
	//
	// CfnElements must be defined within a stack scope (directly or indirectly).
	// Experimental.
	Stack() awscdk.Stack
	// The stop conditions.
	StopConditions() interface{}
	SetStopConditions(val interface{})
	// The tags to apply to the experiment template.
	Tags() awscdk.TagManager
	// The targets for the experiment.
	Targets() interface{}
	SetTargets(val interface{})
	// Return properties modified after initiation.
	//
	// Resources that expose mutable properties should override this function to
	// collect and return the properties object for this resource.
	// Experimental.
	UpdatedProperites() *map[string]interface{}
	// Syntactic sugar for `addOverride(path, undefined)`.
	// Experimental.
	AddDeletionOverride(path *string)
	// Indicates that this resource depends on another resource and cannot be provisioned unless the other resource has been successfully provisioned.
	//
	// This can be used for resources across stacks (or nested stack) boundaries
	// and the dependency will automatically be transferred to the relevant scope.
	// Experimental.
	AddDependsOn(target awscdk.CfnResource)
	// Add a value to the CloudFormation Resource Metadata.
	// See: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/metadata-section-structure.html
	//
	// Note that this is a different set of metadata from CDK node metadata; this
	// metadata ends up in the stack template under the resource, whereas CDK
	// node metadata ends up in the Cloud Assembly.
	//
	// Experimental.
	AddMetadata(key *string, value interface{})
	// Adds an override to the synthesized CloudFormation resource.
	//
	// To add a
	// property override, either use `addPropertyOverride` or prefix `path` with
	// "Properties." (i.e. `Properties.TopicName`).
	//
	// If the override is nested, separate each nested level using a dot (.) in the path parameter.
	// If there is an array as part of the nesting, specify the index in the path.
	//
	// To include a literal `.` in the property name, prefix with a `\`. In most
	// programming languages you will need to write this as `"\\."` because the
	// `\` itself will need to be escaped.
	//
	// For example,
	// “`typescript
	// cfnResource.addOverride('Properties.GlobalSecondaryIndexes.0.Projection.NonKeyAttributes', ['myattribute']);
	// cfnResource.addOverride('Properties.GlobalSecondaryIndexes.1.ProjectionType', 'INCLUDE');
	// “`
	// would add the overrides
	// “`json
	// "Properties": {
	//    "GlobalSecondaryIndexes": [
	//      {
	//        "Projection": {
	//          "NonKeyAttributes": [ "myattribute" ]
	//          ...
	//        }
	//        ...
	//      },
	//      {
	//        "ProjectionType": "INCLUDE"
	//        ...
	//      },
	//    ]
	//    ...
	// }
	// “`
	//
	// The `value` argument to `addOverride` will not be processed or translated
	// in any way. Pass raw JSON values in here with the correct capitalization
	// for CloudFormation. If you pass CDK classes or structs, they will be
	// rendered with lowercased key names, and CloudFormation will reject the
	// template.
	// Experimental.
	AddOverride(path *string, value interface{})
	// Adds an override that deletes the value of a property from the resource definition.
	// Experimental.
	AddPropertyDeletionOverride(propertyPath *string)
	// Adds an override to a resource property.
	//
	// Syntactic sugar for `addOverride("Properties.<...>", value)`.
	// Experimental.
	AddPropertyOverride(propertyPath *string, value interface{})
	// Sets the deletion policy of the resource based on the removal policy specified.
	//
	// The Removal Policy controls what happens to this resource when it stops
	// being managed by CloudFormation, either because you've removed it from the
	// CDK application or because you've made a change that requires the resource
	// to be replaced.
	//
	// The resource can be deleted (`RemovalPolicy.DESTROY`), or left in your AWS
	// account for data recovery and cleanup later (`RemovalPolicy.RETAIN`).
	// Experimental.
	ApplyRemovalPolicy(policy awscdk.RemovalPolicy, options *awscdk.RemovalPolicyOptions)
	// Returns a token for an runtime attribute of this resource.
	//
	// Ideally, use generated attribute accessors (e.g. `resource.arn`), but this can be used for future compatibility
	// in case there is no generated attribute.
	// Experimental.
	GetAtt(attributeName *string) awscdk.Reference
	// Retrieve a value value from the CloudFormation Resource Metadata.
	// See: https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/metadata-section-structure.html
	//
	// Note that this is a different set of metadata from CDK node metadata; this
	// metadata ends up in the stack template under the resource, whereas CDK
	// node metadata ends up in the Cloud Assembly.
	//
	// Experimental.
	GetMetadata(key *string) interface{}
	// Examines the CloudFormation resource and discloses attributes.
	Inspect(inspector awscdk.TreeInspector)
	// Perform final modifications before synthesis.
	//
	// This method can be implemented by derived constructs in order to perform
	// final changes before synthesis. prepare() will be called after child
	// constructs have been prepared.
	//
	// This is an advanced framework feature. Only use this if you
	// understand the implications.
	// Experimental.
	OnPrepare()
	// Allows this construct to emit artifacts into the cloud assembly during synthesis.
	//
	// This method is usually implemented by framework-level constructs such as `Stack` and `Asset`
	// as they participate in synthesizing the cloud assembly.
	// Experimental.
	OnSynthesize(session constructs.ISynthesisSession)
	// Validate the current construct.
	//
	// This method can be implemented by derived constructs in order to perform
	// validation logic. It is called on all constructs before synthesis.
	//
	// Returns: An array of validation error messages, or an empty array if the construct is valid.
	// Experimental.
	OnValidate() *[]*string
	// Overrides the auto-generated logical ID with a specific ID.
	// Experimental.
	OverrideLogicalId(newLogicalId *string)
	// Perform final modifications before synthesis.
	//
	// This method can be implemented by derived constructs in order to perform
	// final changes before synthesis. prepare() will be called after child
	// constructs have been prepared.
	//
	// This is an advanced framework feature. Only use this if you
	// understand the implications.
	// Experimental.
	Prepare()
	RenderProperties(props *map[string]interface{}) *map[string]interface{}
	// Can be overridden by subclasses to determine if this resource will be rendered into the cloudformation template.
	//
	// Returns: `true` if the resource should be included or `false` is the resource
	// should be omitted.
	// Experimental.
	ShouldSynthesize() *bool
	// Allows this construct to emit artifacts into the cloud assembly during synthesis.
	//
	// This method is usually implemented by framework-level constructs such as `Stack` and `Asset`
	// as they participate in synthesizing the cloud assembly.
	// Experimental.
	Synthesize(session awscdk.ISynthesisSession)
	// Returns a string representation of this construct.
	//
	// Returns: a string representation of this resource.
	// Experimental.
	ToString() *string
	// Validate the current construct.
	//
	// This method can be implemented by derived constructs in order to perform
	// validation logic. It is called on all constructs before synthesis.
	//
	// Returns: An array of validation error messages, or an empty array if the construct is valid.
	// Experimental.
	Validate() *[]*string
	// Experimental.
	ValidateProperties(_properties interface{})
}

A CloudFormation `AWS::FIS::ExperimentTemplate`.

Specifies an experiment template.

An experiment template includes the following components:

- *Targets* : A target can be a specific resource in your AWS 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](https://docs.aws.amazon.com/fis/latest/userguide/experiment-templates.html) in the *AWS Fault Injection Simulator User Guide* .

Example:

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"

var cloudWatchLogsConfiguration interface{}
var s3Configuration interface{}

cfnExperimentTemplate := awscdk.Aws_fis.NewCfnExperimentTemplate(this, jsii.String("MyCfnExperimentTemplate"), &cfnExperimentTemplateProps{
	description: jsii.String("description"),
	roleArn: jsii.String("roleArn"),
	stopConditions: []interface{}{
		&experimentTemplateStopConditionProperty{
			source: jsii.String("source"),

			// the properties below are optional
			value: jsii.String("value"),
		},
	},
	tags: map[string]*string{
		"tagsKey": jsii.String("tags"),
	},
	targets: map[string]interface{}{
		"targetsKey": &ExperimentTemplateTargetProperty{
			"resourceType": jsii.String("resourceType"),
			"selectionMode": jsii.String("selectionMode"),

			// the properties below are optional
			"filters": []interface{}{
				&ExperimentTemplateTargetFilterProperty{
					"path": jsii.String("path"),
					"values": []*string{
						jsii.String("values"),
					},
				},
			},
			"parameters": map[string]*string{
				"parametersKey": jsii.String("parameters"),
			},
			"resourceArns": []*string{
				jsii.String("resourceArns"),
			},
			"resourceTags": map[string]*string{
				"resourceTagsKey": jsii.String("resourceTags"),
			},
		},
	},

	// the properties below are optional
	actions: map[string]interface{}{
		"actionsKey": &ExperimentTemplateActionProperty{
			"actionId": jsii.String("actionId"),

			// the properties below are optional
			"description": jsii.String("description"),
			"parameters": map[string]*string{
				"parametersKey": jsii.String("parameters"),
			},
			"startAfter": []*string{
				jsii.String("startAfter"),
			},
			"targets": map[string]*string{
				"targetsKey": jsii.String("targets"),
			},
		},
	},
	logConfiguration: &experimentTemplateLogConfigurationProperty{
		logSchemaVersion: jsii.Number(123),

		// the properties below are optional
		cloudWatchLogsConfiguration: cloudWatchLogsConfiguration,
		s3Configuration: s3Configuration,
	},
})

func NewCfnExperimentTemplate

func NewCfnExperimentTemplate(scope awscdk.Construct, id *string, props *CfnExperimentTemplateProps) CfnExperimentTemplate

Create a new `AWS::FIS::ExperimentTemplate`.

type CfnExperimentTemplateProps

type CfnExperimentTemplateProps struct {
	// A description for the experiment template.
	Description *string `field:"required" json:"description" yaml:"description"`
	// The Amazon Resource Name (ARN) of an IAM role that grants the AWS FIS service permission to perform service actions on your behalf.
	RoleArn *string `field:"required" json:"roleArn" yaml:"roleArn"`
	// The stop conditions.
	StopConditions interface{} `field:"required" json:"stopConditions" yaml:"stopConditions"`
	// The tags to apply to the experiment template.
	Tags *map[string]*string `field:"required" json:"tags" yaml:"tags"`
	// The targets for the experiment.
	Targets interface{} `field:"required" json:"targets" yaml:"targets"`
	// The actions for the experiment.
	Actions interface{} `field:"optional" json:"actions" yaml:"actions"`
	// The configuration for experiment logging.
	LogConfiguration interface{} `field:"optional" json:"logConfiguration" yaml:"logConfiguration"`
}

Properties for defining a `CfnExperimentTemplate`.

Example:

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"

var cloudWatchLogsConfiguration interface{}
var s3Configuration interface{}

cfnExperimentTemplateProps := &cfnExperimentTemplateProps{
	description: jsii.String("description"),
	roleArn: jsii.String("roleArn"),
	stopConditions: []interface{}{
		&experimentTemplateStopConditionProperty{
			source: jsii.String("source"),

			// the properties below are optional
			value: jsii.String("value"),
		},
	},
	tags: map[string]*string{
		"tagsKey": jsii.String("tags"),
	},
	targets: map[string]interface{}{
		"targetsKey": &ExperimentTemplateTargetProperty{
			"resourceType": jsii.String("resourceType"),
			"selectionMode": jsii.String("selectionMode"),

			// the properties below are optional
			"filters": []interface{}{
				&ExperimentTemplateTargetFilterProperty{
					"path": jsii.String("path"),
					"values": []*string{
						jsii.String("values"),
					},
				},
			},
			"parameters": map[string]*string{
				"parametersKey": jsii.String("parameters"),
			},
			"resourceArns": []*string{
				jsii.String("resourceArns"),
			},
			"resourceTags": map[string]*string{
				"resourceTagsKey": jsii.String("resourceTags"),
			},
		},
	},

	// the properties below are optional
	actions: map[string]interface{}{
		"actionsKey": &ExperimentTemplateActionProperty{
			"actionId": jsii.String("actionId"),

			// the properties below are optional
			"description": jsii.String("description"),
			"parameters": map[string]*string{
				"parametersKey": jsii.String("parameters"),
			},
			"startAfter": []*string{
				jsii.String("startAfter"),
			},
			"targets": map[string]*string{
				"targetsKey": jsii.String("targets"),
			},
		},
	},
	logConfiguration: &experimentTemplateLogConfigurationProperty{
		logSchemaVersion: jsii.Number(123),

		// the properties below are optional
		cloudWatchLogsConfiguration: cloudWatchLogsConfiguration,
		s3Configuration: s3Configuration,
	},
}

type CfnExperimentTemplate_ExperimentTemplateActionProperty

type CfnExperimentTemplate_ExperimentTemplateActionProperty struct {
	// The ID of the action.
	//
	// The format of the action ID is: aws: *service-name* : *action-type* .
	ActionId *string `field:"required" json:"actionId" yaml:"actionId"`
	// A description for the action.
	Description *string `field:"optional" json:"description" yaml:"description"`
	// The parameters for the action, if applicable.
	Parameters interface{} `field:"optional" json:"parameters" yaml:"parameters"`
	// 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.
	StartAfter *[]*string `field:"optional" json:"startAfter" yaml:"startAfter"`
	// The targets for the action.
	Targets interface{} `field:"optional" json:"targets" yaml:"targets"`
}

Specifies an action for an experiment template.

For more information, see [Actions](https://docs.aws.amazon.com/fis/latest/userguide/actions.html) in the *AWS Fault Injection Simulator User Guide* .

Example:

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"

experimentTemplateActionProperty := &experimentTemplateActionProperty{
	actionId: jsii.String("actionId"),

	// the properties below are optional
	description: jsii.String("description"),
	parameters: map[string]*string{
		"parametersKey": jsii.String("parameters"),
	},
	startAfter: []*string{
		jsii.String("startAfter"),
	},
	targets: map[string]*string{
		"targetsKey": jsii.String("targets"),
	},
}

type CfnExperimentTemplate_ExperimentTemplateLogConfigurationProperty

type CfnExperimentTemplate_ExperimentTemplateLogConfigurationProperty struct {
	// The schema version.
	//
	// The supported value is 1.
	LogSchemaVersion *float64 `field:"required" json:"logSchemaVersion" yaml:"logSchemaVersion"`
	// The configuration for experiment logging to Amazon CloudWatch Logs. The supported field is `LogGroupArn` . For example:.
	//
	// `{"LogGroupArn": "aws:arn:logs: *region_name* : *account_id* :log-group: *log_group_name* "}`.
	CloudWatchLogsConfiguration interface{} `field:"optional" json:"cloudWatchLogsConfiguration" yaml:"cloudWatchLogsConfiguration"`
	// The configuration for experiment logging to Amazon S3. The following fields are supported:.
	//
	// - `bucketName` - The name of the destination bucket.
	// - `prefix` - An optional bucket prefix.
	//
	// For example:
	//
	// `{"BucketName": " *my-s3-bucket* ", "Prefix": " *log-folder* "}`.
	S3Configuration interface{} `field:"optional" json:"s3Configuration" yaml:"s3Configuration"`
}

Specifies the configuration for experiment logging.

Example:

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"

var cloudWatchLogsConfiguration interface{}
var s3Configuration interface{}

experimentTemplateLogConfigurationProperty := &experimentTemplateLogConfigurationProperty{
	logSchemaVersion: jsii.Number(123),

	// the properties below are optional
	cloudWatchLogsConfiguration: cloudWatchLogsConfiguration,
	s3Configuration: s3Configuration,
}

type CfnExperimentTemplate_ExperimentTemplateStopConditionProperty

type CfnExperimentTemplate_ExperimentTemplateStopConditionProperty struct {
	// 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.
	Source *string `field:"required" json:"source" yaml:"source"`
	// The Amazon Resource Name (ARN) of the CloudWatch alarm.
	//
	// This is required if the source is a CloudWatch alarm.
	Value *string `field:"optional" json:"value" yaml:"value"`
}

Specifies a stop condition for an experiment template.

Example:

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"

experimentTemplateStopConditionProperty := &experimentTemplateStopConditionProperty{
	source: jsii.String("source"),

	// the properties below are optional
	value: jsii.String("value"),
}

type CfnExperimentTemplate_ExperimentTemplateTargetFilterProperty

type CfnExperimentTemplate_ExperimentTemplateTargetFilterProperty struct {
	// The attribute path for the filter.
	Path *string `field:"required" json:"path" yaml:"path"`
	// The attribute values for the filter.
	Values *[]*string `field:"required" json:"values" yaml:"values"`
}

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

For more information, see [Resource filters](https://docs.aws.amazon.com/fis/latest/userguide/targets.html#target-filters) in the *AWS Fault Injection Simulator User Guide* .

Example:

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"

experimentTemplateTargetFilterProperty := &experimentTemplateTargetFilterProperty{
	path: jsii.String("path"),
	values: []*string{
		jsii.String("values"),
	},
}

type CfnExperimentTemplate_ExperimentTemplateTargetProperty

type CfnExperimentTemplate_ExperimentTemplateTargetProperty struct {
	// The resource type.
	//
	// The resource type must be supported for the specified action.
	ResourceType *string `field:"required" json:"resourceType" yaml:"resourceType"`
	// 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.
	SelectionMode *string `field:"required" json:"selectionMode" yaml:"selectionMode"`
	// The filters to apply to identify target resources using specific attributes.
	Filters interface{} `field:"optional" json:"filters" yaml:"filters"`
	// The parameters for the resource type.
	Parameters interface{} `field:"optional" json:"parameters" yaml:"parameters"`
	// The Amazon Resource Names (ARNs) of the resources.
	ResourceArns *[]*string `field:"optional" json:"resourceArns" yaml:"resourceArns"`
	// The tags for the target resources.
	ResourceTags interface{} `field:"optional" json:"resourceTags" yaml:"resourceTags"`
}

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](https://docs.aws.amazon.com/fis/latest/userguide/targets.html) in the *AWS Fault Injection Simulator User Guide* .

Example:

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import "github.com/aws/aws-cdk-go/awscdk"

experimentTemplateTargetProperty := &experimentTemplateTargetProperty{
	resourceType: jsii.String("resourceType"),
	selectionMode: jsii.String("selectionMode"),

	// the properties below are optional
	filters: []interface{}{
		&experimentTemplateTargetFilterProperty{
			path: jsii.String("path"),
			values: []*string{
				jsii.String("values"),
			},
		},
	},
	parameters: map[string]*string{
		"parametersKey": jsii.String("parameters"),
	},
	resourceArns: []*string{
		jsii.String("resourceArns"),
	},
	resourceTags: map[string]*string{
		"resourceTagsKey": jsii.String("resourceTags"),
	},
}

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL