interface MonitorDeploymentProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaLive.CfnSignalMapPropsMixin.MonitorDeploymentProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmedialive#CfnSignalMapPropsMixin_MonitorDeploymentProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.medialive.CfnSignalMapPropsMixin.MonitorDeploymentProperty |
Python | aws_cdk.cfn_property_mixins.aws_medialive.CfnSignalMapPropsMixin.MonitorDeploymentProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_medialive » CfnSignalMapPropsMixin » MonitorDeploymentProperty |
Represents the latest monitor deployment of a signal map.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_medialive as medialive } from '@aws-cdk/cfn-property-mixins';
const monitorDeploymentProperty: medialive.CfnSignalMapPropsMixin.MonitorDeploymentProperty = {
detailsUri: 'detailsUri',
errorMessage: 'errorMessage',
status: 'status',
};
Properties
| Name | Type | Description |
|---|---|---|
| details | string | URI associated with a signal map's monitor deployment. |
| error | string | Error message associated with a failed monitor deployment of a signal map. |
| status? | string | The signal map monitor deployment status. |
detailsUri?
Type:
string
(optional)
URI associated with a signal map's monitor deployment.
errorMessage?
Type:
string
(optional)
Error message associated with a failed monitor deployment of a signal map.
status?
Type:
string
(optional)
The signal map monitor deployment status.

.NET
Go
Java
Python
TypeScript