aws-sdk-groundstation 1.17.0 → 1.18.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 92e4944d7b1af6b3faf944f4c033a1344efde078f7fd5d2b49121bc1b1d3af1a
4
- data.tar.gz: 54ad4dce95c98a69daf131eb4a6a17e0f960d4bfe2d5cf64d0508e269f82f8af
3
+ metadata.gz: 34321e22eb1cf47cfed7775f7b812805f36116bbc4d0299350eab675c25ed621
4
+ data.tar.gz: b98143ee66b847aabdab8e8642a0e66f0b1b5130d8f7a20b505cac78b2cad947
5
5
  SHA512:
6
- metadata.gz: 2ddf37835914a0f3b8877463ef368ef3405792f895b221386cf62a68ab24b8d85d57fd422e48fdc017b878c7844f37b3577b54e17805f6b94e44dc1e72c462de
7
- data.tar.gz: 4c21e1f0b81f3cee54ccf714937a49c4673f4b18c9dd7861ab33594c7dd2059de3b7c24404face696546346868f8e955920e7cda22872c71b85044086dc758ee
6
+ metadata.gz: 1c2466b1b01807b8ffc4be01f5667c8fbd3845fa8071faa353033bf4a40d34ae5cf0449a99a7862200e334022729f4ceaa0eb330adf2e149fbd6241afdb92f79
7
+ data.tar.gz: 76bb71c4fb6f1dc93a3faf3fbaec754cc217279dac698008024617052609345332fb8cb49d4aeddedbfebe8e86259846d75ab1452b73b751767acbb9fb8b913c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.18.0 (2021-04-21)
5
+ ------------------
6
+
7
+ * Feature - Support new S3 Recording Config allowing customers to write downlink data directly to S3.
8
+
4
9
  1.17.0 (2021-03-10)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.17.0
1
+ 1.18.0
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-groundstation/customizations'
48
48
  # @!group service
49
49
  module Aws::GroundStation
50
50
 
51
- GEM_VERSION = '1.17.0'
51
+ GEM_VERSION = '1.18.0'
52
52
 
53
53
  end
@@ -428,6 +428,11 @@ module Aws::GroundStation
428
428
  # dataflow_endpoint_name: "String", # required
429
429
  # dataflow_endpoint_region: "String",
430
430
  # },
431
+ # s3_recording_config: {
432
+ # bucket_arn: "BucketArn", # required
433
+ # prefix: "S3KeyPrefix",
434
+ # role_arn: "RoleArn", # required
435
+ # },
431
436
  # tracking_config: {
432
437
  # autotrack: "PREFERRED", # required, accepts PREFERRED, REMOVED, REQUIRED
433
438
  # },
@@ -446,7 +451,7 @@ module Aws::GroundStation
446
451
  #
447
452
  # resp.config_arn #=> String
448
453
  # resp.config_id #=> String
449
- # resp.config_type #=> String, one of "antenna-downlink", "antenna-downlink-demod-decode", "antenna-uplink", "dataflow-endpoint", "tracking", "uplink-echo"
454
+ # resp.config_type #=> String, one of "antenna-downlink", "antenna-downlink-demod-decode", "antenna-uplink", "dataflow-endpoint", "tracking", "uplink-echo", "s3-recording"
450
455
  #
451
456
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/CreateConfig AWS API Documentation
452
457
  #
@@ -598,14 +603,14 @@ module Aws::GroundStation
598
603
  #
599
604
  # resp = client.delete_config({
600
605
  # config_id: "String", # required
601
- # config_type: "antenna-downlink", # required, accepts antenna-downlink, antenna-downlink-demod-decode, antenna-uplink, dataflow-endpoint, tracking, uplink-echo
606
+ # config_type: "antenna-downlink", # required, accepts antenna-downlink, antenna-downlink-demod-decode, antenna-uplink, dataflow-endpoint, tracking, uplink-echo, s3-recording
602
607
  # })
603
608
  #
604
609
  # @example Response structure
605
610
  #
606
611
  # resp.config_arn #=> String
607
612
  # resp.config_id #=> String
608
- # resp.config_type #=> String, one of "antenna-downlink", "antenna-downlink-demod-decode", "antenna-uplink", "dataflow-endpoint", "tracking", "uplink-echo"
613
+ # resp.config_type #=> String, one of "antenna-downlink", "antenna-downlink-demod-decode", "antenna-uplink", "dataflow-endpoint", "tracking", "uplink-echo", "s3-recording"
609
614
  #
610
615
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/DeleteConfig AWS API Documentation
611
616
  #
@@ -716,8 +721,10 @@ module Aws::GroundStation
716
721
  # resp.dataflow_list[0].destination.config_details.endpoint_details.security_details.security_group_ids[0] #=> String
717
722
  # resp.dataflow_list[0].destination.config_details.endpoint_details.security_details.subnet_ids #=> Array
718
723
  # resp.dataflow_list[0].destination.config_details.endpoint_details.security_details.subnet_ids[0] #=> String
724
+ # resp.dataflow_list[0].destination.config_details.s3_recording_details.bucket_arn #=> String
725
+ # resp.dataflow_list[0].destination.config_details.s3_recording_details.key_template #=> String
719
726
  # resp.dataflow_list[0].destination.config_id #=> String
720
- # resp.dataflow_list[0].destination.config_type #=> String, one of "antenna-downlink", "antenna-downlink-demod-decode", "antenna-uplink", "dataflow-endpoint", "tracking", "uplink-echo"
727
+ # resp.dataflow_list[0].destination.config_type #=> String, one of "antenna-downlink", "antenna-downlink-demod-decode", "antenna-uplink", "dataflow-endpoint", "tracking", "uplink-echo", "s3-recording"
721
728
  # resp.dataflow_list[0].destination.dataflow_destination_region #=> String
722
729
  # resp.dataflow_list[0].error_message #=> String
723
730
  # resp.dataflow_list[0].source.config_details.antenna_demod_decode_details.output_node #=> String
@@ -731,8 +738,10 @@ module Aws::GroundStation
731
738
  # resp.dataflow_list[0].source.config_details.endpoint_details.security_details.security_group_ids[0] #=> String
732
739
  # resp.dataflow_list[0].source.config_details.endpoint_details.security_details.subnet_ids #=> Array
733
740
  # resp.dataflow_list[0].source.config_details.endpoint_details.security_details.subnet_ids[0] #=> String
741
+ # resp.dataflow_list[0].source.config_details.s3_recording_details.bucket_arn #=> String
742
+ # resp.dataflow_list[0].source.config_details.s3_recording_details.key_template #=> String
734
743
  # resp.dataflow_list[0].source.config_id #=> String
735
- # resp.dataflow_list[0].source.config_type #=> String, one of "antenna-downlink", "antenna-downlink-demod-decode", "antenna-uplink", "dataflow-endpoint", "tracking", "uplink-echo"
744
+ # resp.dataflow_list[0].source.config_type #=> String, one of "antenna-downlink", "antenna-downlink-demod-decode", "antenna-uplink", "dataflow-endpoint", "tracking", "uplink-echo", "s3-recording"
736
745
  # resp.dataflow_list[0].source.dataflow_source_region #=> String
737
746
  # resp.end_time #=> Time
738
747
  # resp.error_message #=> String
@@ -780,7 +789,7 @@ module Aws::GroundStation
780
789
  #
781
790
  # resp = client.get_config({
782
791
  # config_id: "String", # required
783
- # config_type: "antenna-downlink", # required, accepts antenna-downlink, antenna-downlink-demod-decode, antenna-uplink, dataflow-endpoint, tracking, uplink-echo
792
+ # config_type: "antenna-downlink", # required, accepts antenna-downlink, antenna-downlink-demod-decode, antenna-uplink, dataflow-endpoint, tracking, uplink-echo, s3-recording
784
793
  # })
785
794
  #
786
795
  # @example Response structure
@@ -806,11 +815,14 @@ module Aws::GroundStation
806
815
  # resp.config_data.antenna_uplink_config.transmit_disabled #=> Boolean
807
816
  # resp.config_data.dataflow_endpoint_config.dataflow_endpoint_name #=> String
808
817
  # resp.config_data.dataflow_endpoint_config.dataflow_endpoint_region #=> String
818
+ # resp.config_data.s3_recording_config.bucket_arn #=> String
819
+ # resp.config_data.s3_recording_config.prefix #=> String
820
+ # resp.config_data.s3_recording_config.role_arn #=> String
809
821
  # resp.config_data.tracking_config.autotrack #=> String, one of "PREFERRED", "REMOVED", "REQUIRED"
810
822
  # resp.config_data.uplink_echo_config.antenna_uplink_config_arn #=> String
811
823
  # resp.config_data.uplink_echo_config.enabled #=> Boolean
812
824
  # resp.config_id #=> String
813
- # resp.config_type #=> String, one of "antenna-downlink", "antenna-downlink-demod-decode", "antenna-uplink", "dataflow-endpoint", "tracking", "uplink-echo"
825
+ # resp.config_type #=> String, one of "antenna-downlink", "antenna-downlink-demod-decode", "antenna-uplink", "dataflow-endpoint", "tracking", "uplink-echo", "s3-recording"
814
826
  # resp.name #=> String
815
827
  # resp.tags #=> Hash
816
828
  # resp.tags["String"] #=> String
@@ -1021,7 +1033,7 @@ module Aws::GroundStation
1021
1033
  # resp.config_list #=> Array
1022
1034
  # resp.config_list[0].config_arn #=> String
1023
1035
  # resp.config_list[0].config_id #=> String
1024
- # resp.config_list[0].config_type #=> String, one of "antenna-downlink", "antenna-downlink-demod-decode", "antenna-uplink", "dataflow-endpoint", "tracking", "uplink-echo"
1036
+ # resp.config_list[0].config_type #=> String, one of "antenna-downlink", "antenna-downlink-demod-decode", "antenna-uplink", "dataflow-endpoint", "tracking", "uplink-echo", "s3-recording"
1025
1037
  # resp.config_list[0].name #=> String
1026
1038
  # resp.next_token #=> String
1027
1039
  #
@@ -1490,6 +1502,11 @@ module Aws::GroundStation
1490
1502
  # dataflow_endpoint_name: "String", # required
1491
1503
  # dataflow_endpoint_region: "String",
1492
1504
  # },
1505
+ # s3_recording_config: {
1506
+ # bucket_arn: "BucketArn", # required
1507
+ # prefix: "S3KeyPrefix",
1508
+ # role_arn: "RoleArn", # required
1509
+ # },
1493
1510
  # tracking_config: {
1494
1511
  # autotrack: "PREFERRED", # required, accepts PREFERRED, REMOVED, REQUIRED
1495
1512
  # },
@@ -1499,7 +1516,7 @@ module Aws::GroundStation
1499
1516
  # },
1500
1517
  # },
1501
1518
  # config_id: "String", # required
1502
- # config_type: "antenna-downlink", # required, accepts antenna-downlink, antenna-downlink-demod-decode, antenna-uplink, dataflow-endpoint, tracking, uplink-echo
1519
+ # config_type: "antenna-downlink", # required, accepts antenna-downlink, antenna-downlink-demod-decode, antenna-uplink, dataflow-endpoint, tracking, uplink-echo, s3-recording
1503
1520
  # name: "SafeName", # required
1504
1521
  # })
1505
1522
  #
@@ -1507,7 +1524,7 @@ module Aws::GroundStation
1507
1524
  #
1508
1525
  # resp.config_arn #=> String
1509
1526
  # resp.config_id #=> String
1510
- # resp.config_type #=> String, one of "antenna-downlink", "antenna-downlink-demod-decode", "antenna-uplink", "dataflow-endpoint", "tracking", "uplink-echo"
1527
+ # resp.config_type #=> String, one of "antenna-downlink", "antenna-downlink-demod-decode", "antenna-uplink", "dataflow-endpoint", "tracking", "uplink-echo", "s3-recording"
1511
1528
  #
1512
1529
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/UpdateConfig AWS API Documentation
1513
1530
  #
@@ -1593,7 +1610,7 @@ module Aws::GroundStation
1593
1610
  params: params,
1594
1611
  config: config)
1595
1612
  context[:gem_name] = 'aws-sdk-groundstation'
1596
- context[:gem_version] = '1.17.0'
1613
+ context[:gem_version] = '1.18.0'
1597
1614
  Seahorse::Client::Request.new(handlers, context)
1598
1615
  end
1599
1616
 
@@ -20,6 +20,7 @@ module Aws::GroundStation
20
20
  AntennaUplinkConfig = Shapes::StructureShape.new(name: 'AntennaUplinkConfig')
21
21
  BandwidthUnits = Shapes::StringShape.new(name: 'BandwidthUnits')
22
22
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
23
+ BucketArn = Shapes::StringShape.new(name: 'BucketArn')
23
24
  CancelContactRequest = Shapes::StructureShape.new(name: 'CancelContactRequest')
24
25
  ConfigArn = Shapes::StringShape.new(name: 'ConfigArn')
25
26
  ConfigCapabilityType = Shapes::StringShape.new(name: 'ConfigCapabilityType')
@@ -45,7 +46,7 @@ module Aws::GroundStation
45
46
  DataflowEndpointGroupIdResponse = Shapes::StructureShape.new(name: 'DataflowEndpointGroupIdResponse')
46
47
  DataflowEndpointGroupList = Shapes::ListShape.new(name: 'DataflowEndpointGroupList')
47
48
  DataflowEndpointListItem = Shapes::StructureShape.new(name: 'DataflowEndpointListItem')
48
- DataflowEndpointmtuInteger = Shapes::IntegerShape.new(name: 'DataflowEndpointmtuInteger')
49
+ DataflowEndpointMtuInteger = Shapes::IntegerShape.new(name: 'DataflowEndpointMtuInteger')
49
50
  DataflowList = Shapes::ListShape.new(name: 'DataflowList')
50
51
  DecodeConfig = Shapes::StructureShape.new(name: 'DecodeConfig')
51
52
  DeleteConfigRequest = Shapes::StructureShape.new(name: 'DeleteConfigRequest')
@@ -106,6 +107,9 @@ module Aws::GroundStation
106
107
  ResourceLimitExceededException = Shapes::StructureShape.new(name: 'ResourceLimitExceededException')
107
108
  ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
108
109
  RoleArn = Shapes::StringShape.new(name: 'RoleArn')
110
+ S3KeyPrefix = Shapes::StringShape.new(name: 'S3KeyPrefix')
111
+ S3RecordingConfig = Shapes::StructureShape.new(name: 'S3RecordingConfig')
112
+ S3RecordingDetails = Shapes::StructureShape.new(name: 'S3RecordingDetails')
109
113
  SafeName = Shapes::StringShape.new(name: 'SafeName')
110
114
  SatelliteList = Shapes::ListShape.new(name: 'SatelliteList')
111
115
  SatelliteListItem = Shapes::StructureShape.new(name: 'SatelliteListItem')
@@ -154,6 +158,7 @@ module Aws::GroundStation
154
158
 
155
159
  ConfigDetails.add_member(:antenna_demod_decode_details, Shapes::ShapeRef.new(shape: AntennaDemodDecodeDetails, location_name: "antennaDemodDecodeDetails"))
156
160
  ConfigDetails.add_member(:endpoint_details, Shapes::ShapeRef.new(shape: EndpointDetails, location_name: "endpointDetails"))
161
+ ConfigDetails.add_member(:s3_recording_details, Shapes::ShapeRef.new(shape: S3RecordingDetails, location_name: "s3RecordingDetails"))
157
162
  ConfigDetails.struct_class = Types::ConfigDetails
158
163
 
159
164
  ConfigIdResponse.add_member(:config_arn, Shapes::ShapeRef.new(shape: ConfigArn, location_name: "configArn"))
@@ -173,6 +178,7 @@ module Aws::GroundStation
173
178
  ConfigTypeData.add_member(:antenna_downlink_demod_decode_config, Shapes::ShapeRef.new(shape: AntennaDownlinkDemodDecodeConfig, location_name: "antennaDownlinkDemodDecodeConfig"))
174
179
  ConfigTypeData.add_member(:antenna_uplink_config, Shapes::ShapeRef.new(shape: AntennaUplinkConfig, location_name: "antennaUplinkConfig"))
175
180
  ConfigTypeData.add_member(:dataflow_endpoint_config, Shapes::ShapeRef.new(shape: DataflowEndpointConfig, location_name: "dataflowEndpointConfig"))
181
+ ConfigTypeData.add_member(:s3_recording_config, Shapes::ShapeRef.new(shape: S3RecordingConfig, location_name: "s3RecordingConfig"))
176
182
  ConfigTypeData.add_member(:tracking_config, Shapes::ShapeRef.new(shape: TrackingConfig, location_name: "trackingConfig"))
177
183
  ConfigTypeData.add_member(:uplink_echo_config, Shapes::ShapeRef.new(shape: UplinkEchoConfig, location_name: "uplinkEchoConfig"))
178
184
  ConfigTypeData.struct_class = Types::ConfigTypeData
@@ -225,7 +231,7 @@ module Aws::GroundStation
225
231
  DataflowEdgeList.member = Shapes::ShapeRef.new(shape: DataflowEdge)
226
232
 
227
233
  DataflowEndpoint.add_member(:address, Shapes::ShapeRef.new(shape: SocketAddress, location_name: "address"))
228
- DataflowEndpoint.add_member(:mtu, Shapes::ShapeRef.new(shape: DataflowEndpointmtuInteger, location_name: "mtu"))
234
+ DataflowEndpoint.add_member(:mtu, Shapes::ShapeRef.new(shape: DataflowEndpointMtuInteger, location_name: "mtu"))
229
235
  DataflowEndpoint.add_member(:name, Shapes::ShapeRef.new(shape: SafeName, location_name: "name"))
230
236
  DataflowEndpoint.add_member(:status, Shapes::ShapeRef.new(shape: EndpointStatus, location_name: "status"))
231
237
  DataflowEndpoint.struct_class = Types::DataflowEndpoint
@@ -468,6 +474,15 @@ module Aws::GroundStation
468
474
  ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
469
475
  ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
470
476
 
477
+ S3RecordingConfig.add_member(:bucket_arn, Shapes::ShapeRef.new(shape: BucketArn, required: true, location_name: "bucketArn"))
478
+ S3RecordingConfig.add_member(:prefix, Shapes::ShapeRef.new(shape: S3KeyPrefix, location_name: "prefix"))
479
+ S3RecordingConfig.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "roleArn"))
480
+ S3RecordingConfig.struct_class = Types::S3RecordingConfig
481
+
482
+ S3RecordingDetails.add_member(:bucket_arn, Shapes::ShapeRef.new(shape: BucketArn, location_name: "bucketArn"))
483
+ S3RecordingDetails.add_member(:key_template, Shapes::ShapeRef.new(shape: String, location_name: "keyTemplate"))
484
+ S3RecordingDetails.struct_class = Types::S3RecordingDetails
485
+
471
486
  SatelliteList.member = Shapes::ShapeRef.new(shape: SatelliteListItem)
472
487
 
473
488
  SatelliteListItem.add_member(:ground_stations, Shapes::ShapeRef.new(shape: GroundStationIdList, location_name: "groundStations"))
@@ -175,11 +175,16 @@ module Aws::GroundStation
175
175
  # Information about the endpoint details.
176
176
  # @return [Types::EndpointDetails]
177
177
  #
178
+ # @!attribute [rw] s3_recording_details
179
+ # Details for an S3 recording `Config` in a contact.
180
+ # @return [Types::S3RecordingDetails]
181
+ #
178
182
  # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/ConfigDetails AWS API Documentation
179
183
  #
180
184
  class ConfigDetails < Struct.new(
181
185
  :antenna_demod_decode_details,
182
- :endpoint_details)
186
+ :endpoint_details,
187
+ :s3_recording_details)
183
188
  SENSITIVE = []
184
189
  include Aws::Structure
185
190
  end
@@ -293,6 +298,11 @@ module Aws::GroundStation
293
298
  # dataflow_endpoint_name: "String", # required
294
299
  # dataflow_endpoint_region: "String",
295
300
  # },
301
+ # s3_recording_config: {
302
+ # bucket_arn: "BucketArn", # required
303
+ # prefix: "S3KeyPrefix",
304
+ # role_arn: "RoleArn", # required
305
+ # },
296
306
  # tracking_config: {
297
307
  # autotrack: "PREFERRED", # required, accepts PREFERRED, REMOVED, REQUIRED
298
308
  # },
@@ -321,6 +331,10 @@ module Aws::GroundStation
321
331
  # Information about the dataflow endpoint `Config`.
322
332
  # @return [Types::DataflowEndpointConfig]
323
333
  #
334
+ # @!attribute [rw] s3_recording_config
335
+ # Information about an S3 recording `Config`.
336
+ # @return [Types::S3RecordingConfig]
337
+ #
324
338
  # @!attribute [rw] tracking_config
325
339
  # Object that determines whether tracking should be used during a
326
340
  # contact executed with this `Config` in the mission profile.
@@ -341,6 +355,7 @@ module Aws::GroundStation
341
355
  :antenna_downlink_demod_decode_config,
342
356
  :antenna_uplink_config,
343
357
  :dataflow_endpoint_config,
358
+ :s3_recording_config,
344
359
  :tracking_config,
345
360
  :uplink_echo_config)
346
361
  SENSITIVE = []
@@ -490,6 +505,11 @@ module Aws::GroundStation
490
505
  # dataflow_endpoint_name: "String", # required
491
506
  # dataflow_endpoint_region: "String",
492
507
  # },
508
+ # s3_recording_config: {
509
+ # bucket_arn: "BucketArn", # required
510
+ # prefix: "S3KeyPrefix",
511
+ # role_arn: "RoleArn", # required
512
+ # },
493
513
  # tracking_config: {
494
514
  # autotrack: "PREFERRED", # required, accepts PREFERRED, REMOVED, REQUIRED
495
515
  # },
@@ -785,7 +805,7 @@ module Aws::GroundStation
785
805
  #
786
806
  # {
787
807
  # config_id: "String", # required
788
- # config_type: "antenna-downlink", # required, accepts antenna-downlink, antenna-downlink-demod-decode, antenna-uplink, dataflow-endpoint, tracking, uplink-echo
808
+ # config_type: "antenna-downlink", # required, accepts antenna-downlink, antenna-downlink-demod-decode, antenna-uplink, dataflow-endpoint, tracking, uplink-echo, s3-recording
789
809
  # }
790
810
  #
791
811
  # @!attribute [rw] config_id
@@ -1165,7 +1185,7 @@ module Aws::GroundStation
1165
1185
  #
1166
1186
  # {
1167
1187
  # config_id: "String", # required
1168
- # config_type: "antenna-downlink", # required, accepts antenna-downlink, antenna-downlink-demod-decode, antenna-uplink, dataflow-endpoint, tracking, uplink-echo
1188
+ # config_type: "antenna-downlink", # required, accepts antenna-downlink, antenna-downlink-demod-decode, antenna-uplink, dataflow-endpoint, tracking, uplink-echo, s3-recording
1169
1189
  # }
1170
1190
  #
1171
1191
  # @!attribute [rw] config_id
@@ -1959,6 +1979,58 @@ module Aws::GroundStation
1959
1979
  include Aws::Structure
1960
1980
  end
1961
1981
 
1982
+ # Information about an S3 recording `Config`.
1983
+ #
1984
+ # @note When making an API call, you may pass S3RecordingConfig
1985
+ # data as a hash:
1986
+ #
1987
+ # {
1988
+ # bucket_arn: "BucketArn", # required
1989
+ # prefix: "S3KeyPrefix",
1990
+ # role_arn: "RoleArn", # required
1991
+ # }
1992
+ #
1993
+ # @!attribute [rw] bucket_arn
1994
+ # ARN of the bucket to record to.
1995
+ # @return [String]
1996
+ #
1997
+ # @!attribute [rw] prefix
1998
+ # S3 Key prefix to prefice data files.
1999
+ # @return [String]
2000
+ #
2001
+ # @!attribute [rw] role_arn
2002
+ # ARN of the role Ground Station assumes to write data to the bucket.
2003
+ # @return [String]
2004
+ #
2005
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/S3RecordingConfig AWS API Documentation
2006
+ #
2007
+ class S3RecordingConfig < Struct.new(
2008
+ :bucket_arn,
2009
+ :prefix,
2010
+ :role_arn)
2011
+ SENSITIVE = []
2012
+ include Aws::Structure
2013
+ end
2014
+
2015
+ # Details about an S3 recording `Config` used in a contact.
2016
+ #
2017
+ # @!attribute [rw] bucket_arn
2018
+ # ARN of the bucket used.
2019
+ # @return [String]
2020
+ #
2021
+ # @!attribute [rw] key_template
2022
+ # Template of the S3 key used.
2023
+ # @return [String]
2024
+ #
2025
+ # @see http://docs.aws.amazon.com/goto/WebAPI/groundstation-2019-05-23/S3RecordingDetails AWS API Documentation
2026
+ #
2027
+ class S3RecordingDetails < Struct.new(
2028
+ :bucket_arn,
2029
+ :key_template)
2030
+ SENSITIVE = []
2031
+ include Aws::Structure
2032
+ end
2033
+
1962
2034
  # Item in a list of satellites.
1963
2035
  #
1964
2036
  # @!attribute [rw] ground_stations
@@ -2268,6 +2340,11 @@ module Aws::GroundStation
2268
2340
  # dataflow_endpoint_name: "String", # required
2269
2341
  # dataflow_endpoint_region: "String",
2270
2342
  # },
2343
+ # s3_recording_config: {
2344
+ # bucket_arn: "BucketArn", # required
2345
+ # prefix: "S3KeyPrefix",
2346
+ # role_arn: "RoleArn", # required
2347
+ # },
2271
2348
  # tracking_config: {
2272
2349
  # autotrack: "PREFERRED", # required, accepts PREFERRED, REMOVED, REQUIRED
2273
2350
  # },
@@ -2277,7 +2354,7 @@ module Aws::GroundStation
2277
2354
  # },
2278
2355
  # },
2279
2356
  # config_id: "String", # required
2280
- # config_type: "antenna-downlink", # required, accepts antenna-downlink, antenna-downlink-demod-decode, antenna-uplink, dataflow-endpoint, tracking, uplink-echo
2357
+ # config_type: "antenna-downlink", # required, accepts antenna-downlink, antenna-downlink-demod-decode, antenna-uplink, dataflow-endpoint, tracking, uplink-echo, s3-recording
2281
2358
  # name: "SafeName", # required
2282
2359
  # }
2283
2360
  #
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-groundstation
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.17.0
4
+ version: 1.18.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-03-10 00:00:00.000000000 Z
11
+ date: 2021-04-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -66,8 +66,8 @@ homepage: https://github.com/aws/aws-sdk-ruby
66
66
  licenses:
67
67
  - Apache-2.0
68
68
  metadata:
69
- source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-groundstation
70
- changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-groundstation/CHANGELOG.md
69
+ source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-groundstation
70
+ changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-groundstation/CHANGELOG.md
71
71
  post_install_message:
72
72
  rdoc_options: []
73
73
  require_paths:
@@ -84,7 +84,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
84
84
  version: '0'
85
85
  requirements: []
86
86
  rubyforge_project:
87
- rubygems_version: 2.7.6.2
87
+ rubygems_version: 2.7.6.3
88
88
  signing_key:
89
89
  specification_version: 4
90
90
  summary: AWS SDK for Ruby - AWS Ground Station