interface RegionStatusProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ObservabilityAdmin.CfnTelemetryRule.RegionStatusProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsobservabilityadmin#CfnTelemetryRule_RegionStatusProperty |
Java | software.amazon.awscdk.services.observabilityadmin.CfnTelemetryRule.RegionStatusProperty |
Python | aws_cdk.aws_observabilityadmin.CfnTelemetryRule.RegionStatusProperty |
TypeScript | aws-cdk-lib » aws_observabilityadmin » CfnTelemetryRule » RegionStatusProperty |
Status of a telemetry rule in a specific region.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_observabilityadmin as observabilityadmin } from 'aws-cdk-lib';
const regionStatusProperty: observabilityadmin.CfnTelemetryRule.RegionStatusProperty = {
region: 'region',
ruleArn: 'ruleArn',
status: 'status',
};
Properties
| Name | Type | Description |
|---|---|---|
| region? | string | The AWS region code. |
| rule | string | The ARN of the rule in this region. |
| status? | string | The replication status of the rule in this region. |
region?
Type:
string
(optional)
The AWS region code.
ruleArn?
Type:
string
(optional)
The ARN of the rule in this region.
status?
Type:
string
(optional)
The replication status of the rule in this region.

.NET
Go
Java
Python
TypeScript