Class: Aws::MediaLive::Types::VpcOutputSettings
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaLive::Types::VpcOutputSettings
- Defined in:
- gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb
Overview
The properties for a private VPC Output When this property is specified, the output egress addresses will be created in a user specified VPC
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#public_address_allocation_ids ⇒ Array<String>
List of public address allocation ids to associate with ENIs that will be created in Output VPC.
-
#security_group_ids ⇒ Array<String>
A list of up to 5 EC2 VPC security group IDs to attach to the Output VPC network interfaces.
-
#subnet_ids ⇒ Array<String>
A list of VPC subnet IDs from the same VPC.
Instance Attribute Details
#public_address_allocation_ids ⇒ Array<String>
List of public address allocation ids to associate with ENIs that will be created in Output VPC. Must specify one for SINGLE_PIPELINE, two for STANDARD channels
13594 13595 13596 13597 13598 13599 13600 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 13594 class VpcOutputSettings < Struct.new( :public_address_allocation_ids, :security_group_ids, :subnet_ids) SENSITIVE = [] include Aws::Structure end |
#security_group_ids ⇒ Array<String>
A list of up to 5 EC2 VPC security group IDs to attach to the Output VPC network interfaces. If none are specified then the VPC default security group will be used
13594 13595 13596 13597 13598 13599 13600 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 13594 class VpcOutputSettings < Struct.new( :public_address_allocation_ids, :security_group_ids, :subnet_ids) SENSITIVE = [] include Aws::Structure end |
#subnet_ids ⇒ Array<String>
A list of VPC subnet IDs from the same VPC. If STANDARD channel, subnet IDs must be mapped to two unique availability zones (AZ).
13594 13595 13596 13597 13598 13599 13600 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 13594 class VpcOutputSettings < Struct.new( :public_address_allocation_ids, :security_group_ids, :subnet_ids) SENSITIVE = [] include Aws::Structure end |