public static interface Source.Builder extends SdkPojo, CopyableBuilder<Source.Builder,Source>
Modifier and Type | Method and Description |
---|---|
default Source.Builder |
decryption(Consumer<Encryption.Builder> decryption)
The type of encryption that is used on the content ingested from this source.
|
Source.Builder |
decryption(Encryption decryption)
The type of encryption that is used on the content ingested from this source.
|
Source.Builder |
description(String description)
A description for the source.
|
Source.Builder |
entitlementArn(String entitlementArn)
The ARN of the entitlement that allows you to subscribe to content that comes from another AWS account.
|
Source.Builder |
ingestIp(String ingestIp)
The IP address that the flow will be listening on for incoming content.
|
Source.Builder |
ingestPort(Integer ingestPort)
The port that the flow will be listening on for incoming content.
|
Source.Builder |
name(String name)
The name of the source.
|
Source.Builder |
sourceArn(String sourceArn)
The ARN of the source.
|
default Source.Builder |
transport(Consumer<Transport.Builder> transport)
Attributes related to the transport stream that are used in the source.
|
Source.Builder |
transport(Transport transport)
Attributes related to the transport stream that are used in the source.
|
Source.Builder |
whitelistCidr(String whitelistCidr)
The range of IP addresses that should be allowed to contribute content to your source.
|
copy
applyMutation, build
Source.Builder decryption(Encryption decryption)
decryption
- The type of encryption that is used on the content ingested from this source.default Source.Builder decryption(Consumer<Encryption.Builder> decryption)
Encryption.Builder
avoiding the need to create one manually via
Encryption.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its result
is passed to decryption(Encryption)
.decryption
- a consumer that will call methods on Encryption.Builder
decryption(Encryption)
Source.Builder description(String description)
description
- A description for the source. This value is not used or seen outside of the current AWS Elemental
MediaConnect account.Source.Builder entitlementArn(String entitlementArn)
entitlementArn
- The ARN of the entitlement that allows you to subscribe to content that comes from another AWS
account. The entitlement is set by the content originator and the ARN is generated as part of the
originator's flow.Source.Builder ingestIp(String ingestIp)
ingestIp
- The IP address that the flow will be listening on for incoming content.Source.Builder ingestPort(Integer ingestPort)
ingestPort
- The port that the flow will be listening on for incoming content.Source.Builder name(String name)
name
- The name of the source.Source.Builder sourceArn(String sourceArn)
sourceArn
- The ARN of the source.Source.Builder transport(Transport transport)
transport
- Attributes related to the transport stream that are used in the source.default Source.Builder transport(Consumer<Transport.Builder> transport)
Transport.Builder
avoiding the need to create one manually via
Transport.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its result
is passed to transport(Transport)
.transport
- a consumer that will call methods on Transport.Builder
transport(Transport)
Source.Builder whitelistCidr(String whitelistCidr)
whitelistCidr
- The range of IP addresses that should be allowed to contribute content to your source. These IP
addresses should in the form of a Classless Inter-Domain Routing (CIDR) block; for example,
10.0.0.0/16.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.