Class: Aws::MediaConnect::Types::VpcInterfaceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConnect::Types::VpcInterfaceRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-mediaconnect/types.rb
Overview
Desired VPC Interface for a Flow
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the VPC Interface.
-
#network_interface_type ⇒ String
The type of network interface.
-
#role_arn ⇒ String
Role Arn MediaConnect can assumes to create ENIs in customer’s account.
-
#security_group_ids ⇒ Array<String>
Security Group IDs to be used on ENI.
-
#subnet_id ⇒ String
Subnet must be in the AZ of the Flow.
Instance Attribute Details
#name ⇒ String
The name of the VPC Interface. This value must be unique within the current flow.
5329 5330 5331 5332 5333 5334 5335 5336 5337 |
# File 'lib/aws-sdk-mediaconnect/types.rb', line 5329 class VpcInterfaceRequest < Struct.new( :name, :network_interface_type, :role_arn, :security_group_ids, :subnet_id) SENSITIVE = [] include Aws::Structure end |
#network_interface_type ⇒ String
The type of network interface. If this value is not included in the request, MediaConnect uses ENA as the networkInterfaceType.
5329 5330 5331 5332 5333 5334 5335 5336 5337 |
# File 'lib/aws-sdk-mediaconnect/types.rb', line 5329 class VpcInterfaceRequest < Struct.new( :name, :network_interface_type, :role_arn, :security_group_ids, :subnet_id) SENSITIVE = [] include Aws::Structure end |
#role_arn ⇒ String
Role Arn MediaConnect can assumes to create ENIs in customer’s account
5329 5330 5331 5332 5333 5334 5335 5336 5337 |
# File 'lib/aws-sdk-mediaconnect/types.rb', line 5329 class VpcInterfaceRequest < Struct.new( :name, :network_interface_type, :role_arn, :security_group_ids, :subnet_id) SENSITIVE = [] include Aws::Structure end |
#security_group_ids ⇒ Array<String>
Security Group IDs to be used on ENI.
5329 5330 5331 5332 5333 5334 5335 5336 5337 |
# File 'lib/aws-sdk-mediaconnect/types.rb', line 5329 class VpcInterfaceRequest < Struct.new( :name, :network_interface_type, :role_arn, :security_group_ids, :subnet_id) SENSITIVE = [] include Aws::Structure end |
#subnet_id ⇒ String
Subnet must be in the AZ of the Flow
5329 5330 5331 5332 5333 5334 5335 5336 5337 |
# File 'lib/aws-sdk-mediaconnect/types.rb', line 5329 class VpcInterfaceRequest < Struct.new( :name, :network_interface_type, :role_arn, :security_group_ids, :subnet_id) SENSITIVE = [] include Aws::Structure end |