interface ChimeVoiceConnectorStreamingStatusProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Chime.Events.ChimeVoiceConnectorStreamingStatus.ChimeVoiceConnectorStreamingStatusProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awschime/events#ChimeVoiceConnectorStreamingStatus_ChimeVoiceConnectorStreamingStatusProps |
Java | software.amazon.awscdk.mixins.preview.services.chime.events.ChimeVoiceConnectorStreamingStatus.ChimeVoiceConnectorStreamingStatusProps |
Python | aws_cdk.mixins_preview.aws_chime.events.ChimeVoiceConnectorStreamingStatus.ChimeVoiceConnectorStreamingStatusProps |
TypeScript | @aws-cdk/mixins-preview ยป aws_chime ยป events ยป ChimeVoiceConnectorStreamingStatus ยป ChimeVoiceConnectorStreamingStatusProps |
Props type for aws.chime@ChimeVoiceConnectorStreamingStatus event.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as chime_events } from '@aws-cdk/mixins-preview/aws-chime';
const chimeVoiceConnectorStreamingStatusProps: chime_events.ChimeVoiceConnectorStreamingStatus.ChimeVoiceConnectorStreamingStatusProps = {
callId: ['callId'],
direction: ['direction'],
eventMetadata: {
region: ['region'],
resources: ['resources'],
version: ['version'],
},
inviteHeaders: {
inviteHeadersKey: 'inviteHeaders',
},
mediaType: ['mediaType'],
siprecMetadata: ['siprecMetadata'],
startFragmentNumber: ['startFragmentNumber'],
startTime: ['startTime'],
streamArn: ['streamArn'],
streamingStatus: ['streamingStatus'],
transactionId: ['transactionId'],
version: ['version'],
voiceConnectorId: ['voiceConnectorId'],
};
Properties
| Name | Type | Description |
|---|---|---|
| call | string[] | callId property. |
| direction? | string[] | direction property. |
| event | AWSEvent | EventBridge event metadata. |
| invite | { [string]: string } | inviteHeaders property. |
| media | string[] | mediaType property. |
| siprec | string[] | siprecMetadata property. |
| start | string[] | startFragmentNumber property. |
| start | string[] | startTime property. |
| stream | string[] | streamArn property. |
| streaming | string[] | streamingStatus property. |
| transaction | string[] | transactionId property. |
| version? | string[] | version property. |
| voice | string[] | voiceConnectorId property. |
callId?
Type:
string[]
(optional, default: Do not filter on this field)
callId property.
Specify an array of string values to match this event if the actual value of callId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
direction?
Type:
string[]
(optional, default: Do not filter on this field)
direction property.
Specify an array of string values to match this event if the actual value of direction is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
eventMetadata?
Type:
AWSEvent
(optional, default: -)
EventBridge event metadata.
inviteHeaders?
Type:
{ [string]: string }
(optional, default: Do not filter on this field)
inviteHeaders property.
Specify an array of string values to match this event if the actual value of inviteHeaders is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
mediaType?
Type:
string[]
(optional, default: Do not filter on this field)
mediaType property.
Specify an array of string values to match this event if the actual value of mediaType is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
siprecMetadata?
Type:
string[]
(optional, default: Do not filter on this field)
siprecMetadata property.
Specify an array of string values to match this event if the actual value of siprecMetadata is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
startFragmentNumber?
Type:
string[]
(optional, default: Do not filter on this field)
startFragmentNumber property.
Specify an array of string values to match this event if the actual value of startFragmentNumber is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
startTime?
Type:
string[]
(optional, default: Do not filter on this field)
startTime property.
Specify an array of string values to match this event if the actual value of startTime is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
streamArn?
Type:
string[]
(optional, default: Do not filter on this field)
streamArn property.
Specify an array of string values to match this event if the actual value of streamArn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
streamingStatus?
Type:
string[]
(optional, default: Do not filter on this field)
streamingStatus property.
Specify an array of string values to match this event if the actual value of streamingStatus is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
transactionId?
Type:
string[]
(optional, default: Do not filter on this field)
transactionId property.
Specify an array of string values to match this event if the actual value of transactionId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
version?
Type:
string[]
(optional, default: Do not filter on this field)
version property.
Specify an array of string values to match this event if the actual value of version is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
voiceConnectorId?
Type:
string[]
(optional, default: Do not filter on this field)
voiceConnectorId property.
Specify an array of string values to match this event if the actual value of voiceConnectorId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

.NET
Go
Java
Python
TypeScript