Class: AWSCDK::GroundStation::CfnDataflowEndpointGroup::SecurityDetailsProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::GroundStation::CfnDataflowEndpointGroup::SecurityDetailsProperty
- Defined in:
- ground_station/cfn_dataflow_endpoint_group.rb
Overview
Information about IAM roles, subnets, and security groups needed for this DataflowEndpointGroup.
Instance Attribute Summary collapse
-
#role_arn ⇒ String?
readonly
The ARN of a role which Ground Station has permission to assume, such as
arn:aws:iam::1234567890:role/DataDeliveryServiceRole. -
#security_group_ids ⇒ Array<String>?
readonly
The security group Ids of the security role, such as
sg-1234567890abcdef0. -
#subnet_ids ⇒ Array<String>?
readonly
The subnet Ids of the security details, such as
subnet-12345678.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(role_arn: nil, security_group_ids: nil, subnet_ids: nil) ⇒ SecurityDetailsProperty
constructor
A new instance of SecurityDetailsProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(role_arn: nil, security_group_ids: nil, subnet_ids: nil) ⇒ SecurityDetailsProperty
Returns a new instance of SecurityDetailsProperty.
953 954 955 956 957 958 959 960 |
# File 'ground_station/cfn_dataflow_endpoint_group.rb', line 953 def initialize(role_arn: nil, security_group_ids: nil, subnet_ids: nil) @role_arn = role_arn Jsii::Type.check_type(@role_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "roleArn") unless @role_arn.nil? @security_group_ids = security_group_ids Jsii::Type.check_type(@security_group_ids, JSON.parse(Base64.strict_decode64("eyJjb2xsZWN0aW9uIjp7ImVsZW1lbnR0eXBlIjp7InByaW1pdGl2ZSI6InN0cmluZyJ9LCJraW5kIjoiYXJyYXkifX0=")), "securityGroupIds") unless @security_group_ids.nil? @subnet_ids = subnet_ids Jsii::Type.check_type(@subnet_ids, JSON.parse(Base64.strict_decode64("eyJjb2xsZWN0aW9uIjp7ImVsZW1lbnR0eXBlIjp7InByaW1pdGl2ZSI6InN0cmluZyJ9LCJraW5kIjoiYXJyYXkifX0=")), "subnetIds") unless @subnet_ids.nil? end |
Instance Attribute Details
#role_arn ⇒ String? (readonly)
The ARN of a role which Ground Station has permission to assume, such as arn:aws:iam::1234567890:role/DataDeliveryServiceRole .
Ground Station will assume this role and create an ENI in your VPC on the specified subnet upon creation of a dataflow endpoint group. This ENI is used as the ingress/egress point for data streamed during a satellite contact.
968 969 970 |
# File 'ground_station/cfn_dataflow_endpoint_group.rb', line 968 def role_arn @role_arn end |
#security_group_ids ⇒ Array<String>? (readonly)
The security group Ids of the security role, such as sg-1234567890abcdef0 .
973 974 975 |
# File 'ground_station/cfn_dataflow_endpoint_group.rb', line 973 def security_group_ids @security_group_ids end |
#subnet_ids ⇒ Array<String>? (readonly)
The subnet Ids of the security details, such as subnet-12345678 .
978 979 980 |
# File 'ground_station/cfn_dataflow_endpoint_group.rb', line 978 def subnet_ids @subnet_ids end |
Class Method Details
.jsii_properties ⇒ Object
980 981 982 983 984 985 986 |
# File 'ground_station/cfn_dataflow_endpoint_group.rb', line 980 def self.jsii_properties { :role_arn => "roleArn", :security_group_ids => "securityGroupIds", :subnet_ids => "subnetIds", } end |
Instance Method Details
#to_jsii ⇒ Object
988 989 990 991 992 993 994 995 996 |
# File 'ground_station/cfn_dataflow_endpoint_group.rb', line 988 def to_jsii result = {} result.merge!({ "roleArn" => @role_arn, "securityGroupIds" => @security_group_ids, "subnetIds" => @subnet_ids, }) result.compact end |