Class CfnService.ResourceConfigurationProperty
Resource configuration for an input source.
Implements
Inherited Members
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.
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.
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
Remarks
DesignFileS3Url
S3 URL of a design file.
public string? DesignFileS3Url { get; set; }
Property Value
Remarks
Eks
Resource configuration for an input source.
public object? Eks { get; set; }
Property Value
Remarks
ResourceTags
Resource tags to discover resources.
public object? ResourceTags { get; set; }
Property Value
Remarks
TfStateFileUrl
URL of a Terraform state file.
public string? TfStateFileUrl { get; set; }