Show / Hide Table of Contents

Class CfnService.ResourceConfigurationProperty

Resource configuration for an input source.

Inheritance
object
CfnService.ResourceConfigurationProperty
Implements
CfnService.IResourceConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.ResilienceHubV2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnService.ResourceConfigurationProperty : CfnService.IResourceConfigurationProperty
Syntax (vb)
Public Class CfnService.ResourceConfigurationProperty Implements CfnService.IResourceConfigurationProperty
Remarks

Provide exactly one field.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resiliencehubv2-service-resourceconfiguration.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.ResilienceHubV2;

             var resourceConfigurationProperty = new ResourceConfigurationProperty {
                 CfnStackArn = "cfnStackArn",
                 DesignFileS3Url = "designFileS3Url",
                 Eks = new EksSourceProperty {
                     ClusterArn = "clusterArn",
                     Namespaces = new [] { "namespaces" }
                 },
                 ResourceTags = new [] { new ResourceTagProperty {
                     Key = "key",
                     Values = new [] { "values" }
                 } },
                 TfStateFileUrl = "tfStateFileUrl"
             };

Synopsis

Constructors

ResourceConfigurationProperty()

Resource configuration for an input source.

Properties

CfnStackArn

ARN of a CloudFormation stack.

DesignFileS3Url

S3 URL of a design file.

Eks

Resource configuration for an input source.

ResourceTags

Resource tags to discover resources.

TfStateFileUrl

URL of a Terraform state file.

Constructors

ResourceConfigurationProperty()

Resource configuration for an input source.

public ResourceConfigurationProperty()
Remarks

Provide exactly one field.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resiliencehubv2-service-resourceconfiguration.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.ResilienceHubV2;

             var resourceConfigurationProperty = new ResourceConfigurationProperty {
                 CfnStackArn = "cfnStackArn",
                 DesignFileS3Url = "designFileS3Url",
                 Eks = new EksSourceProperty {
                     ClusterArn = "clusterArn",
                     Namespaces = new [] { "namespaces" }
                 },
                 ResourceTags = new [] { new ResourceTagProperty {
                     Key = "key",
                     Values = new [] { "values" }
                 } },
                 TfStateFileUrl = "tfStateFileUrl"
             };

Properties

CfnStackArn

ARN of a CloudFormation stack.

public string? CfnStackArn { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resiliencehubv2-service-resourceconfiguration.html#cfn-resiliencehubv2-service-resourceconfiguration-cfnstackarn

DesignFileS3Url

S3 URL of a design file.

public string? DesignFileS3Url { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resiliencehubv2-service-resourceconfiguration.html#cfn-resiliencehubv2-service-resourceconfiguration-designfiles3url

Eks

Resource configuration for an input source.

public object? Eks { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resiliencehubv2-service-resourceconfiguration.html#cfn-resiliencehubv2-service-resourceconfiguration-eks

Type union: either IResolvable or CfnService.IEksSourceProperty

ResourceTags

Resource tags to discover resources.

public object? ResourceTags { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resiliencehubv2-service-resourceconfiguration.html#cfn-resiliencehubv2-service-resourceconfiguration-resourcetags

Type union: either IResolvable or (either IResolvable or CfnService.IResourceTagProperty)[]

TfStateFileUrl

URL of a Terraform state file.

public string? TfStateFileUrl { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resiliencehubv2-service-resourceconfiguration.html#cfn-resiliencehubv2-service-resourceconfiguration-tfstatefileurl

Implements

CfnService.IResourceConfigurationProperty
Back to top Generated by DocFX