interface RegionStatusProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ObservabilityAdmin.CfnTelemetryRulePropsMixin.RegionStatusProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsobservabilityadmin#CfnTelemetryRulePropsMixin_RegionStatusProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.observabilityadmin.CfnTelemetryRulePropsMixin.RegionStatusProperty |
Python | aws_cdk.cfn_property_mixins.aws_observabilityadmin.CfnTelemetryRulePropsMixin.RegionStatusProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_observabilityadmin » CfnTelemetryRulePropsMixin » 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/cfn-property-mixins';
const regionStatusProperty: observabilityadmin.CfnTelemetryRulePropsMixin.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