Documentation ¶
Index ¶
- func CfnExperimentTemplate_CFN_RESOURCE_TYPE_NAME() *string
- func CfnExperimentTemplate_IsCfnElement(x interface{}) *bool
- func CfnExperimentTemplate_IsCfnResource(construct constructs.IConstruct) *bool
- func CfnExperimentTemplate_IsConstruct(x interface{}) *bool
- func NewCfnExperimentTemplate_Override(c CfnExperimentTemplate, scope awscdk.Construct, id *string, ...)
- type CfnExperimentTemplate
- type CfnExperimentTemplateProps
- type CfnExperimentTemplate_ExperimentTemplateActionProperty
- type CfnExperimentTemplate_ExperimentTemplateStopConditionProperty
- type CfnExperimentTemplate_ExperimentTemplateTargetFilterProperty
- type CfnExperimentTemplate_ExperimentTemplateTargetProperty
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 Actions() interface{} SetActions(val interface{}) AttrId() *string CfnOptions() awscdk.ICfnResourceOptions CfnProperties() *map[string]interface{} CfnResourceType() *string CreationStack() *[]*string Description() *string SetDescription(val *string) LogicalId() *string Node() awscdk.ConstructNode Ref() *string RoleArn() *string SetRoleArn(val *string) Stack() awscdk.Stack StopConditions() interface{} SetStopConditions(val interface{}) Tags() awscdk.TagManager Targets() interface{} SetTargets(val interface{}) UpdatedProperites() *map[string]interface{} AddDeletionOverride(path *string) AddDependsOn(target awscdk.CfnResource) AddMetadata(key *string, value interface{}) AddOverride(path *string, value interface{}) AddPropertyDeletionOverride(propertyPath *string) AddPropertyOverride(propertyPath *string, value interface{}) ApplyRemovalPolicy(policy awscdk.RemovalPolicy, options *awscdk.RemovalPolicyOptions) GetAtt(attributeName *string) awscdk.Reference GetMetadata(key *string) interface{} Inspect(inspector awscdk.TreeInspector) OnPrepare() OnSynthesize(session constructs.ISynthesisSession) OnValidate() *[]*string OverrideLogicalId(newLogicalId *string) Prepare() RenderProperties(props *map[string]interface{}) *map[string]interface{} ShouldSynthesize() *bool Synthesize(session awscdk.ISynthesisSession) ToString() *string Validate() *[]*string ValidateProperties(_properties interface{}) }
A CloudFormation `AWS::FIS::ExperimentTemplate`.
func NewCfnExperimentTemplate ¶
func NewCfnExperimentTemplate(scope awscdk.Construct, id *string, props *CfnExperimentTemplateProps) CfnExperimentTemplate
Create a new `AWS::FIS::ExperimentTemplate`.
type CfnExperimentTemplateProps ¶
type CfnExperimentTemplateProps struct { // `AWS::FIS::ExperimentTemplate.Description`. Description *string `json:"description"` // `AWS::FIS::ExperimentTemplate.RoleArn`. RoleArn *string `json:"roleArn"` // `AWS::FIS::ExperimentTemplate.StopConditions`. StopConditions interface{} `json:"stopConditions"` // `AWS::FIS::ExperimentTemplate.Tags`. Tags *map[string]*string `json:"tags"` // `AWS::FIS::ExperimentTemplate.Targets`. Targets interface{} `json:"targets"` // `AWS::FIS::ExperimentTemplate.Actions`. Actions interface{} `json:"actions"` }
Properties for defining a `AWS::FIS::ExperimentTemplate`.
type CfnExperimentTemplate_ExperimentTemplateActionProperty ¶
type CfnExperimentTemplate_ExperimentTemplateActionProperty struct { // `CfnExperimentTemplate.ExperimentTemplateActionProperty.ActionId`. ActionId *string `json:"actionId"` // `CfnExperimentTemplate.ExperimentTemplateActionProperty.Description`. Description *string `json:"description"` // `CfnExperimentTemplate.ExperimentTemplateActionProperty.Parameters`. Parameters interface{} `json:"parameters"` // `CfnExperimentTemplate.ExperimentTemplateActionProperty.StartAfter`. StartAfter *[]*string `json:"startAfter"` // `CfnExperimentTemplate.ExperimentTemplateActionProperty.Targets`. Targets interface{} `json:"targets"` }
type CfnExperimentTemplate_ExperimentTemplateTargetProperty ¶
type CfnExperimentTemplate_ExperimentTemplateTargetProperty struct { // `CfnExperimentTemplate.ExperimentTemplateTargetProperty.ResourceType`. ResourceType *string `json:"resourceType"` // `CfnExperimentTemplate.ExperimentTemplateTargetProperty.SelectionMode`. SelectionMode *string `json:"selectionMode"` // `CfnExperimentTemplate.ExperimentTemplateTargetProperty.Filters`. Filters interface{} `json:"filters"` // `CfnExperimentTemplate.ExperimentTemplateTargetProperty.ResourceArns`. ResourceArns *[]*string `json:"resourceArns"` // `CfnExperimentTemplate.ExperimentTemplateTargetProperty.ResourceTags`. ResourceTags interface{} `json:"resourceTags"` }