interface InputSourceRequestProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaLive.Mixins.CfnInputPropsMixin.InputSourceRequestProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmedialive/mixins#CfnInputPropsMixin_InputSourceRequestProperty |
Java | software.amazon.awscdk.mixins.preview.services.medialive.mixins.CfnInputPropsMixin.InputSourceRequestProperty |
Python | aws_cdk.mixins_preview.aws_medialive.mixins.CfnInputPropsMixin.InputSourceRequestProperty |
TypeScript | @aws-cdk/mixins-preview » aws_medialive » mixins » CfnInputPropsMixin » InputSourceRequestProperty |
Settings that apply only if the input is a pull type of input.
The parent of this entity is Input.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as medialive_mixins } from '@aws-cdk/mixins-preview/aws-medialive';
const inputSourceRequestProperty: medialive_mixins.CfnInputPropsMixin.InputSourceRequestProperty = {
passwordParam: 'passwordParam',
url: 'url',
username: 'username',
};
Properties
| Name | Type | Description |
|---|---|---|
| password | string | The password parameter that holds the password for accessing the upstream system. |
| url? | string | For a pull input, the URL where MediaLive pulls the source content from. |
| username? | string | The user name to connect to the upstream system. |
passwordParam?
Type:
string
(optional)
The password parameter that holds the password for accessing the upstream system.
The password parameter applies only if the upstream system requires credentials.
url?
Type:
string
(optional)
For a pull input, the URL where MediaLive pulls the source content from.
username?
Type:
string
(optional)
The user name to connect to the upstream system.
The user name applies only if the upstream system requires credentials.

.NET
Go
Java
Python
TypeScript