interface OutputDestinationOptions
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.OutputDestinationOptions |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#OutputDestinationOptions |
Java | software.amazon.awscdk.services.medialive.alpha.OutputDestinationOptions |
Python | aws_cdk.aws_medialive_alpha.OutputDestinationOptions |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป OutputDestinationOptions |
Options for a URL-based output destination.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as medialive_alpha from '@aws-cdk/aws-medialive-alpha';
import { aws_ssm as ssm } from 'aws-cdk-lib';
declare const stringParameter: ssm.StringParameter;
const outputDestinationOptions: medialive_alpha.OutputDestinationOptions = {
password: stringParameter,
username: 'username',
};
Properties
| Name | Type | Description |
|---|---|---|
| password? | IString | An SSM String Parameter holding the password for accessing the downstream system. |
| username? | string | The username for accessing the downstream system. |
password?
Type:
IString
(optional, default: no credentials)
An SSM String Parameter holding the password for accessing the downstream system.
MediaLive reads it from Parameter Store at channel runtime, so the channel role is granted read access.
username?
Type:
string
(optional, default: no credentials)
The username for accessing the downstream system.

.NET
Go
Java
Python
TypeScript (