Class: Aws::GroundStation::Types::SecurityDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::GroundStation::Types::SecurityDetails
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-groundstation/types.rb
Overview
Information about endpoints.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#role_arn ⇒ String
ARN to a role needed for connecting streams to your instances.
-
#security_group_ids ⇒ Array<String>
The security groups to attach to the elastic network interfaces.
-
#subnet_ids ⇒ Array<String>
A list of subnets where AWS Ground Station places elastic network interfaces to send streams to your instances.
Instance Attribute Details
#role_arn ⇒ String
ARN to a role needed for connecting streams to your instances.
3183 3184 3185 3186 3187 3188 3189 |
# File 'lib/aws-sdk-groundstation/types.rb', line 3183 class SecurityDetails < Struct.new( :subnet_ids, :security_group_ids, :role_arn) SENSITIVE = [] include Aws::Structure end |
#security_group_ids ⇒ Array<String>
The security groups to attach to the elastic network interfaces.
3183 3184 3185 3186 3187 3188 3189 |
# File 'lib/aws-sdk-groundstation/types.rb', line 3183 class SecurityDetails < Struct.new( :subnet_ids, :security_group_ids, :role_arn) SENSITIVE = [] include Aws::Structure end |
#subnet_ids ⇒ Array<String>
A list of subnets where AWS Ground Station places elastic network interfaces to send streams to your instances.
3183 3184 3185 3186 3187 3188 3189 |
# File 'lib/aws-sdk-groundstation/types.rb', line 3183 class SecurityDetails < Struct.new( :subnet_ids, :security_group_ids, :role_arn) SENSITIVE = [] include Aws::Structure end |