@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:40.913Z") @Stability(value=Stable) public interface CfnInputProps extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.medialive.*;
Object tags;
CfnInputProps cfnInputProps = CfnInputProps.builder()
.destinations(List.of(InputDestinationRequestProperty.builder()
.streamName("streamName")
.build()))
.inputDevices(List.of(InputDeviceSettingsProperty.builder()
.id("id")
.build()))
.inputSecurityGroups(List.of("inputSecurityGroups"))
.mediaConnectFlows(List.of(MediaConnectFlowRequestProperty.builder()
.flowArn("flowArn")
.build()))
.name("name")
.roleArn("roleArn")
.sources(List.of(InputSourceRequestProperty.builder()
.passwordParam("passwordParam")
.url("url")
.username("username")
.build()))
.tags(tags)
.type("type")
.vpc(InputVpcRequestProperty.builder()
.securityGroupIds(List.of("securityGroupIds"))
.subnetIds(List.of("subnetIds"))
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnInputProps.Builder
A builder for
CfnInputProps |
static class |
CfnInputProps.Jsii$Proxy
An implementation for
CfnInputProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnInputProps.Builder |
builder() |
default Object |
getDestinations()
Settings that apply only if the input is a push type of input.
|
default Object |
getInputDevices()
Settings that apply only if the input is an Elemental Link input.
|
default List<String> |
getInputSecurityGroups()
The list of input security groups (referenced by IDs) to attach to the input if the input is a push type.
|
default Object |
getMediaConnectFlows()
Settings that apply only if the input is a MediaConnect input.
|
default String |
getName()
A name for the input.
|
default String |
getRoleArn()
The IAM role for MediaLive to assume when creating a MediaConnect input or Amazon VPC input.
|
default Object |
getSources()
Settings that apply only if the input is a pull type of input.
|
default Object |
getTags()
A collection of tags for this input.
|
default String |
getType()
The type for this input.
|
default Object |
getVpc()
Settings that apply only if the input is an push input where the source is on Amazon VPC.
|
@Stability(value=Stable) @Nullable default Object getDestinations()
@Stability(value=Stable) @Nullable default Object getInputDevices()
@Stability(value=Stable) @Nullable default List<String> getInputSecurityGroups()
@Stability(value=Stable) @Nullable default Object getMediaConnectFlows()
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) @Nullable default String getRoleArn()
This doesn't apply to other types of inputs. The role is identified by its ARN.
@Stability(value=Stable) @Nullable default Object getSources()
@Stability(value=Stable) @Nullable default Object getTags()
Each tag is a key-value pair.
@Stability(value=Stable) @Nullable default String getType()
@Stability(value=Stable) @Nullable default Object getVpc()
@Stability(value=Stable) static CfnInputProps.Builder builder()
CfnInputProps.Builder of CfnInputPropsCopyright © 2022. All rights reserved.