Documentation ¶
Index ¶
- func CfnApp_CFN_RESOURCE_TYPE_NAME() *string
- func CfnApp_IsCfnElement(x interface{}) *bool
- func CfnApp_IsCfnResource(construct constructs.IConstruct) *bool
- func CfnApp_IsConstruct(x interface{}) *bool
- func CfnResiliencyPolicy_CFN_RESOURCE_TYPE_NAME() *string
- func CfnResiliencyPolicy_IsCfnElement(x interface{}) *bool
- func CfnResiliencyPolicy_IsCfnResource(construct constructs.IConstruct) *bool
- func CfnResiliencyPolicy_IsConstruct(x interface{}) *bool
- func NewCfnApp_Override(c CfnApp, scope constructs.Construct, id *string, props *CfnAppProps)
- func NewCfnResiliencyPolicy_Override(c CfnResiliencyPolicy, scope constructs.Construct, id *string, ...)
- type CfnApp
- type CfnAppProps
- type CfnApp_PhysicalResourceIdProperty
- type CfnApp_ResourceMappingProperty
- type CfnResiliencyPolicy
- type CfnResiliencyPolicyProps
- type CfnResiliencyPolicy_FailurePolicyProperty
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CfnApp_CFN_RESOURCE_TYPE_NAME ¶
func CfnApp_CFN_RESOURCE_TYPE_NAME() *string
func CfnApp_IsCfnElement ¶
func CfnApp_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.
func CfnApp_IsCfnResource ¶
func CfnApp_IsCfnResource(construct constructs.IConstruct) *bool
Check whether the given construct is a CfnResource.
func CfnApp_IsConstruct ¶
func CfnApp_IsConstruct(x interface{}) *bool
Checks if `x` is a construct.
Returns: true if `x` is an object created from a class which extends `Construct`. Deprecated: use `x instanceof Construct` instead.
func CfnResiliencyPolicy_CFN_RESOURCE_TYPE_NAME ¶
func CfnResiliencyPolicy_CFN_RESOURCE_TYPE_NAME() *string
func CfnResiliencyPolicy_IsCfnElement ¶
func CfnResiliencyPolicy_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.
func CfnResiliencyPolicy_IsCfnResource ¶
func CfnResiliencyPolicy_IsCfnResource(construct constructs.IConstruct) *bool
Check whether the given construct is a CfnResource.
func CfnResiliencyPolicy_IsConstruct ¶
func CfnResiliencyPolicy_IsConstruct(x interface{}) *bool
Checks if `x` is a construct.
Returns: true if `x` is an object created from a class which extends `Construct`. Deprecated: use `x instanceof Construct` instead.
func NewCfnApp_Override ¶
func NewCfnApp_Override(c CfnApp, scope constructs.Construct, id *string, props *CfnAppProps)
Create a new `AWS::ResilienceHub::App`.
func NewCfnResiliencyPolicy_Override ¶
func NewCfnResiliencyPolicy_Override(c CfnResiliencyPolicy, scope constructs.Construct, id *string, props *CfnResiliencyPolicyProps)
Create a new `AWS::ResilienceHub::ResiliencyPolicy`.
Types ¶
type CfnApp ¶
type CfnApp interface { awscdk.CfnResource awscdk.IInspectable // A string containing a full Resilience Hub app template body. AppTemplateBody() *string SetAppTemplateBody(val *string) // The Amazon Resource Name (ARN) of the app. AttrAppArn() *string // Options for this resource, such as condition, update policy etc. CfnOptions() awscdk.ICfnResourceOptions CfnProperties() *map[string]interface{} // AWS resource type. 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. CreationStack() *[]*string // The optional description for an app. Description() *string SetDescription(val *string) // 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. LogicalId() *string // The name for the application. Name() *string SetName(val *string) // The tree node. Node() constructs.Node // 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 })`. Ref() *string // The Amazon Resource Name (ARN) of the resiliency policy. ResiliencyPolicyArn() *string SetResiliencyPolicyArn(val *string) // An array of ResourceMapping objects. ResourceMappings() interface{} SetResourceMappings(val interface{}) // The stack in which this element is defined. // // CfnElements must be defined within a stack scope (directly or indirectly). Stack() awscdk.Stack // The tags assigned to the resource. // // A tag is a label that you assign to an AWS resource. Each tag consists of a key/value pair. Tags() awscdk.TagManager // Return properties modified after initiation. // // Resources that expose mutable properties should override this function to // collect and return the properties object for this resource. UpdatedProperites() *map[string]interface{} // Syntactic sugar for `addOverride(path, undefined)`. 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. 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. // 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. AddOverride(path *string, value interface{}) // Adds an override that deletes the value of a property from the resource definition. AddPropertyDeletionOverride(propertyPath *string) // Adds an override to a resource property. // // Syntactic sugar for `addOverride("Properties.<...>", value)`. 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`). 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. 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. // GetMetadata(key *string) interface{} // Examines the CloudFormation resource and discloses attributes. Inspect(inspector awscdk.TreeInspector) // Overrides the auto-generated logical ID with a specific ID. OverrideLogicalId(newLogicalId *string) 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. ShouldSynthesize() *bool // Returns a string representation of this construct. // // Returns: a string representation of this resource. ToString() *string ValidateProperties(_properties interface{}) }
A CloudFormation `AWS::ResilienceHub::App`.
Creates a Resilience Hub application. A Resilience Hub application is a collection of AWS resources structured to prevent and recover AWS application disruptions. To describe a Resilience Hub application, you provide an application name, resources from one or more–up to five– AWS CloudFormation stacks, and an appropriate resiliency policy.
After you create a Resilience Hub application, you publish it so that you can run a resiliency assessment on it. You can then use recommendations from the assessment to improve resiliency by running another assessment, comparing results, and then iterating the process until you achieve your goals for recovery time objective (RTO) and recovery point objective (RPO).
Example:
import awscdk "github.com/aws/aws-cdk-go/awscdk"import resiliencehub "github.com/aws/aws-cdk-go/awscdk/aws_resiliencehub" cfnApp := resiliencehub.NewCfnApp(this, jsii.String("MyCfnApp"), &cfnAppProps{ appTemplateBody: jsii.String("appTemplateBody"), name: jsii.String("name"), resourceMappings: []interface{}{ &resourceMappingProperty{ mappingType: jsii.String("mappingType"), physicalResourceId: &physicalResourceIdProperty{ identifier: jsii.String("identifier"), type: jsii.String("type"), // the properties below are optional awsAccountId: jsii.String("awsAccountId"), awsRegion: jsii.String("awsRegion"), }, // the properties below are optional logicalStackName: jsii.String("logicalStackName"), resourceName: jsii.String("resourceName"), }, }, // the properties below are optional description: jsii.String("description"), resiliencyPolicyArn: jsii.String("resiliencyPolicyArn"), tags: map[string]*string{ "tagsKey": jsii.String("tags"), }, })
func NewCfnApp ¶
func NewCfnApp(scope constructs.Construct, id *string, props *CfnAppProps) CfnApp
Create a new `AWS::ResilienceHub::App`.
type CfnAppProps ¶
type CfnAppProps struct { // A string containing a full Resilience Hub app template body. AppTemplateBody *string `json:"appTemplateBody" yaml:"appTemplateBody"` // The name for the application. Name *string `json:"name" yaml:"name"` // An array of ResourceMapping objects. ResourceMappings interface{} `json:"resourceMappings" yaml:"resourceMappings"` // The optional description for an app. Description *string `json:"description" yaml:"description"` // The Amazon Resource Name (ARN) of the resiliency policy. ResiliencyPolicyArn *string `json:"resiliencyPolicyArn" yaml:"resiliencyPolicyArn"` // The tags assigned to the resource. // // A tag is a label that you assign to an AWS resource. Each tag consists of a key/value pair. Tags *map[string]*string `json:"tags" yaml:"tags"` }
Properties for defining a `CfnApp`.
Example:
import awscdk "github.com/aws/aws-cdk-go/awscdk"import resiliencehub "github.com/aws/aws-cdk-go/awscdk/aws_resiliencehub" cfnAppProps := &cfnAppProps{ appTemplateBody: jsii.String("appTemplateBody"), name: jsii.String("name"), resourceMappings: []interface{}{ &resourceMappingProperty{ mappingType: jsii.String("mappingType"), physicalResourceId: &physicalResourceIdProperty{ identifier: jsii.String("identifier"), type: jsii.String("type"), // the properties below are optional awsAccountId: jsii.String("awsAccountId"), awsRegion: jsii.String("awsRegion"), }, // the properties below are optional logicalStackName: jsii.String("logicalStackName"), resourceName: jsii.String("resourceName"), }, }, // the properties below are optional description: jsii.String("description"), resiliencyPolicyArn: jsii.String("resiliencyPolicyArn"), tags: map[string]*string{ "tagsKey": jsii.String("tags"), }, }
type CfnApp_PhysicalResourceIdProperty ¶
type CfnApp_PhysicalResourceIdProperty struct { // The identifier of the physical resource. Identifier *string `json:"identifier" yaml:"identifier"` // Specifies the type of physical resource identifier. // // - **Arn** - The resource identifier is an Amazon Resource Name (ARN) . // - **Native** - The resource identifier is a Resilience Hub-native identifier. Type *string `json:"type" yaml:"type"` // The AWS account that owns the physical resource. AwsAccountId *string `json:"awsAccountId" yaml:"awsAccountId"` // The AWS Region that the physical resource is located in. AwsRegion *string `json:"awsRegion" yaml:"awsRegion"` }
Defines a physical resource identifier.
Example:
import awscdk "github.com/aws/aws-cdk-go/awscdk"import resiliencehub "github.com/aws/aws-cdk-go/awscdk/aws_resiliencehub" physicalResourceIdProperty := &physicalResourceIdProperty{ identifier: jsii.String("identifier"), type: jsii.String("type"), // the properties below are optional awsAccountId: jsii.String("awsAccountId"), awsRegion: jsii.String("awsRegion"), }
type CfnApp_ResourceMappingProperty ¶
type CfnApp_ResourceMappingProperty struct { // Specifies the type of resource mapping. // // - **AppRegistryApp** - The resource is mapped to another application. The name of the application is contained in the `appRegistryAppName` property. // - **CfnStack** - The resource is mapped to a CloudFormation stack. The name of the CloudFormation stack is contained in the `logicalStackName` property. // - **Resource** - The resource is mapped to another resource. The name of the resource is contained in the `resourceName` property. // - **ResourceGroup** - The resource is mapped to a resource group. The name of the resource group is contained in the `resourceGroupName` property. MappingType *string `json:"mappingType" yaml:"mappingType"` // The identifier of this resource. PhysicalResourceId interface{} `json:"physicalResourceId" yaml:"physicalResourceId"` // The name of the CloudFormation stack this resource is mapped to. LogicalStackName *string `json:"logicalStackName" yaml:"logicalStackName"` // The name of the resource this resource is mapped to. ResourceName *string `json:"resourceName" yaml:"resourceName"` }
Defines a resource mapping.
Example:
import awscdk "github.com/aws/aws-cdk-go/awscdk"import resiliencehub "github.com/aws/aws-cdk-go/awscdk/aws_resiliencehub" resourceMappingProperty := &resourceMappingProperty{ mappingType: jsii.String("mappingType"), physicalResourceId: &physicalResourceIdProperty{ identifier: jsii.String("identifier"), type: jsii.String("type"), // the properties below are optional awsAccountId: jsii.String("awsAccountId"), awsRegion: jsii.String("awsRegion"), }, // the properties below are optional logicalStackName: jsii.String("logicalStackName"), resourceName: jsii.String("resourceName"), }
type CfnResiliencyPolicy ¶
type CfnResiliencyPolicy interface { awscdk.CfnResource awscdk.IInspectable // The Amazon Resource Name (ARN) of the resiliency policy. AttrPolicyArn() *string // Options for this resource, such as condition, update policy etc. CfnOptions() awscdk.ICfnResourceOptions CfnProperties() *map[string]interface{} // AWS resource type. 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. CreationStack() *[]*string // Specifies a high-level geographical location constraint for where your resilience policy data can be stored. DataLocationConstraint() *string SetDataLocationConstraint(val *string) // 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. LogicalId() *string // The tree node. Node() constructs.Node // The resiliency policy. Policy() interface{} SetPolicy(val interface{}) // The description for the policy. PolicyDescription() *string SetPolicyDescription(val *string) // The name of the policy. PolicyName() *string SetPolicyName(val *string) // 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 })`. Ref() *string // The stack in which this element is defined. // // CfnElements must be defined within a stack scope (directly or indirectly). Stack() awscdk.Stack // The tags assigned to the resource. // // A tag is a label that you assign to an AWS resource. Each tag consists of a key/value pair. Tags() awscdk.TagManager // The tier for this resiliency policy, ranging from the highest severity ( `MissionCritical` ) to lowest ( `NonCritical` ). Tier() *string SetTier(val *string) // Return properties modified after initiation. // // Resources that expose mutable properties should override this function to // collect and return the properties object for this resource. UpdatedProperites() *map[string]interface{} // Syntactic sugar for `addOverride(path, undefined)`. 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. 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. // 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. AddOverride(path *string, value interface{}) // Adds an override that deletes the value of a property from the resource definition. AddPropertyDeletionOverride(propertyPath *string) // Adds an override to a resource property. // // Syntactic sugar for `addOverride("Properties.<...>", value)`. 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`). 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. 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. // GetMetadata(key *string) interface{} // Examines the CloudFormation resource and discloses attributes. Inspect(inspector awscdk.TreeInspector) // Overrides the auto-generated logical ID with a specific ID. OverrideLogicalId(newLogicalId *string) 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. ShouldSynthesize() *bool // Returns a string representation of this construct. // // Returns: a string representation of this resource. ToString() *string ValidateProperties(_properties interface{}) }
A CloudFormation `AWS::ResilienceHub::ResiliencyPolicy`.
Defines a resiliency policy.
Example:
import awscdk "github.com/aws/aws-cdk-go/awscdk"import resiliencehub "github.com/aws/aws-cdk-go/awscdk/aws_resiliencehub" cfnResiliencyPolicy := resiliencehub.NewCfnResiliencyPolicy(this, jsii.String("MyCfnResiliencyPolicy"), &cfnResiliencyPolicyProps{ policy: map[string]interface{}{ "policyKey": &FailurePolicyProperty{ "rpoInSecs": jsii.Number(123), "rtoInSecs": jsii.Number(123), }, }, policyName: jsii.String("policyName"), tier: jsii.String("tier"), // the properties below are optional dataLocationConstraint: jsii.String("dataLocationConstraint"), policyDescription: jsii.String("policyDescription"), tags: map[string]*string{ "tagsKey": jsii.String("tags"), }, })
func NewCfnResiliencyPolicy ¶
func NewCfnResiliencyPolicy(scope constructs.Construct, id *string, props *CfnResiliencyPolicyProps) CfnResiliencyPolicy
Create a new `AWS::ResilienceHub::ResiliencyPolicy`.
type CfnResiliencyPolicyProps ¶
type CfnResiliencyPolicyProps struct { // The resiliency policy. Policy interface{} `json:"policy" yaml:"policy"` // The name of the policy. PolicyName *string `json:"policyName" yaml:"policyName"` // The tier for this resiliency policy, ranging from the highest severity ( `MissionCritical` ) to lowest ( `NonCritical` ). Tier *string `json:"tier" yaml:"tier"` // Specifies a high-level geographical location constraint for where your resilience policy data can be stored. DataLocationConstraint *string `json:"dataLocationConstraint" yaml:"dataLocationConstraint"` // The description for the policy. PolicyDescription *string `json:"policyDescription" yaml:"policyDescription"` // The tags assigned to the resource. // // A tag is a label that you assign to an AWS resource. Each tag consists of a key/value pair. Tags *map[string]*string `json:"tags" yaml:"tags"` }
Properties for defining a `CfnResiliencyPolicy`.
Example:
import awscdk "github.com/aws/aws-cdk-go/awscdk"import resiliencehub "github.com/aws/aws-cdk-go/awscdk/aws_resiliencehub" cfnResiliencyPolicyProps := &cfnResiliencyPolicyProps{ policy: map[string]interface{}{ "policyKey": &FailurePolicyProperty{ "rpoInSecs": jsii.Number(123), "rtoInSecs": jsii.Number(123), }, }, policyName: jsii.String("policyName"), tier: jsii.String("tier"), // the properties below are optional dataLocationConstraint: jsii.String("dataLocationConstraint"), policyDescription: jsii.String("policyDescription"), tags: map[string]*string{ "tagsKey": jsii.String("tags"), }, }
type CfnResiliencyPolicy_FailurePolicyProperty ¶
type CfnResiliencyPolicy_FailurePolicyProperty struct { // The Recovery Point Objective (RPO), in seconds. RpoInSecs *float64 `json:"rpoInSecs" yaml:"rpoInSecs"` // The Recovery Time Objective (RTO), in seconds. RtoInSecs *float64 `json:"rtoInSecs" yaml:"rtoInSecs"` }
Defines a failure policy.
Example:
import awscdk "github.com/aws/aws-cdk-go/awscdk"import resiliencehub "github.com/aws/aws-cdk-go/awscdk/aws_resiliencehub" failurePolicyProperty := &failurePolicyProperty{ rpoInSecs: jsii.Number(123), rtoInSecs: jsii.Number(123), }