aws-sdk-robomaker 1.39.0 → 1.43.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-robomaker/client.rb +181 -41
- data/lib/aws-sdk-robomaker/client_api.rb +54 -10
- data/lib/aws-sdk-robomaker/types.rb +326 -59
- data/lib/aws-sdk-robomaker.rb +1 -1
- metadata +5 -5
@@ -241,20 +241,33 @@ module Aws::RoboMaker
|
|
241
241
|
#
|
242
242
|
# {
|
243
243
|
# simulation_unit_limit: 1,
|
244
|
+
# compute_type: "CPU", # accepts CPU, GPU_AND_CPU
|
245
|
+
# gpu_unit_limit: 1,
|
244
246
|
# }
|
245
247
|
#
|
246
248
|
# @!attribute [rw] simulation_unit_limit
|
247
249
|
# The simulation unit limit. Your simulation is allocated CPU and
|
248
250
|
# memory proportional to the supplied simulation unit limit. A
|
249
251
|
# simulation unit is 1 vcpu and 2GB of memory. You are only billed for
|
250
|
-
# the SU utilization you consume up to the
|
252
|
+
# the SU utilization you consume up to the maximum value provided. The
|
251
253
|
# default is 15.
|
252
254
|
# @return [Integer]
|
253
255
|
#
|
256
|
+
# @!attribute [rw] compute_type
|
257
|
+
# Compute type information for the simulation job.
|
258
|
+
# @return [String]
|
259
|
+
#
|
260
|
+
# @!attribute [rw] gpu_unit_limit
|
261
|
+
# Compute GPU unit limit for the simulation job. It is the same as the
|
262
|
+
# number of GPUs allocated to the SimulationJob.
|
263
|
+
# @return [Integer]
|
264
|
+
#
|
254
265
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/Compute AWS API Documentation
|
255
266
|
#
|
256
267
|
class Compute < Struct.new(
|
257
|
-
:simulation_unit_limit
|
268
|
+
:simulation_unit_limit,
|
269
|
+
:compute_type,
|
270
|
+
:gpu_unit_limit)
|
258
271
|
SENSITIVE = []
|
259
272
|
include Aws::Structure
|
260
273
|
end
|
@@ -265,14 +278,25 @@ module Aws::RoboMaker
|
|
265
278
|
# The simulation unit limit. Your simulation is allocated CPU and
|
266
279
|
# memory proportional to the supplied simulation unit limit. A
|
267
280
|
# simulation unit is 1 vcpu and 2GB of memory. You are only billed for
|
268
|
-
# the SU utilization you consume up to the
|
281
|
+
# the SU utilization you consume up to the maximum value provided. The
|
269
282
|
# default is 15.
|
270
283
|
# @return [Integer]
|
271
284
|
#
|
285
|
+
# @!attribute [rw] compute_type
|
286
|
+
# Compute type response information for the simulation job.
|
287
|
+
# @return [String]
|
288
|
+
#
|
289
|
+
# @!attribute [rw] gpu_unit_limit
|
290
|
+
# Compute GPU unit limit for the simulation job. It is the same as the
|
291
|
+
# number of GPUs allocated to the SimulationJob.
|
292
|
+
# @return [Integer]
|
293
|
+
#
|
272
294
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/ComputeResponse AWS API Documentation
|
273
295
|
#
|
274
296
|
class ComputeResponse < Struct.new(
|
275
|
-
:simulation_unit_limit
|
297
|
+
:simulation_unit_limit,
|
298
|
+
:compute_type,
|
299
|
+
:gpu_unit_limit)
|
276
300
|
SENSITIVE = []
|
277
301
|
include Aws::Structure
|
278
302
|
end
|
@@ -539,7 +563,7 @@ module Aws::RoboMaker
|
|
539
563
|
#
|
540
564
|
# {
|
541
565
|
# name: "Name", # required
|
542
|
-
# sources: [
|
566
|
+
# sources: [
|
543
567
|
# {
|
544
568
|
# s3_bucket: "S3Bucket",
|
545
569
|
# s3_key: "S3Key",
|
@@ -547,12 +571,15 @@ module Aws::RoboMaker
|
|
547
571
|
# },
|
548
572
|
# ],
|
549
573
|
# robot_software_suite: { # required
|
550
|
-
# name: "ROS", # accepts ROS, ROS2
|
574
|
+
# name: "ROS", # accepts ROS, ROS2, General
|
551
575
|
# version: "Kinetic", # accepts Kinetic, Melodic, Dashing, Foxy
|
552
576
|
# },
|
553
577
|
# tags: {
|
554
578
|
# "TagKey" => "TagValue",
|
555
579
|
# },
|
580
|
+
# environment: {
|
581
|
+
# uri: "RepositoryUrl",
|
582
|
+
# },
|
556
583
|
# }
|
557
584
|
#
|
558
585
|
# @!attribute [rw] name
|
@@ -573,13 +600,19 @@ module Aws::RoboMaker
|
|
573
600
|
# robot application.
|
574
601
|
# @return [Hash<String,String>]
|
575
602
|
#
|
603
|
+
# @!attribute [rw] environment
|
604
|
+
# The object that contains that URI of the Docker image that you use
|
605
|
+
# for your robot application.
|
606
|
+
# @return [Types::Environment]
|
607
|
+
#
|
576
608
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateRobotApplicationRequest AWS API Documentation
|
577
609
|
#
|
578
610
|
class CreateRobotApplicationRequest < Struct.new(
|
579
611
|
:name,
|
580
612
|
:sources,
|
581
613
|
:robot_software_suite,
|
582
|
-
:tags
|
614
|
+
:tags,
|
615
|
+
:environment)
|
583
616
|
SENSITIVE = []
|
584
617
|
include Aws::Structure
|
585
618
|
end
|
@@ -618,6 +651,11 @@ module Aws::RoboMaker
|
|
618
651
|
# The list of all tags added to the robot application.
|
619
652
|
# @return [Hash<String,String>]
|
620
653
|
#
|
654
|
+
# @!attribute [rw] environment
|
655
|
+
# An object that contains the Docker image URI used to a create your
|
656
|
+
# robot application.
|
657
|
+
# @return [Types::Environment]
|
658
|
+
#
|
621
659
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateRobotApplicationResponse AWS API Documentation
|
622
660
|
#
|
623
661
|
class CreateRobotApplicationResponse < Struct.new(
|
@@ -628,7 +666,8 @@ module Aws::RoboMaker
|
|
628
666
|
:robot_software_suite,
|
629
667
|
:last_updated_at,
|
630
668
|
:revision_id,
|
631
|
-
:tags
|
669
|
+
:tags,
|
670
|
+
:environment)
|
632
671
|
SENSITIVE = []
|
633
672
|
include Aws::Structure
|
634
673
|
end
|
@@ -639,6 +678,8 @@ module Aws::RoboMaker
|
|
639
678
|
# {
|
640
679
|
# application: "Arn", # required
|
641
680
|
# current_revision_id: "RevisionId",
|
681
|
+
# s3_etags: ["S3Etag"],
|
682
|
+
# image_digest: "ImageDigest",
|
642
683
|
# }
|
643
684
|
#
|
644
685
|
# @!attribute [rw] application
|
@@ -651,11 +692,23 @@ module Aws::RoboMaker
|
|
651
692
|
# created.
|
652
693
|
# @return [String]
|
653
694
|
#
|
695
|
+
# @!attribute [rw] s3_etags
|
696
|
+
# The Amazon S3 identifier for the zip file bundle that you use for
|
697
|
+
# your robot application.
|
698
|
+
# @return [Array<String>]
|
699
|
+
#
|
700
|
+
# @!attribute [rw] image_digest
|
701
|
+
# A SHA256 identifier for the Docker image that you use for your robot
|
702
|
+
# application.
|
703
|
+
# @return [String]
|
704
|
+
#
|
654
705
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateRobotApplicationVersionRequest AWS API Documentation
|
655
706
|
#
|
656
707
|
class CreateRobotApplicationVersionRequest < Struct.new(
|
657
708
|
:application,
|
658
|
-
:current_revision_id
|
709
|
+
:current_revision_id,
|
710
|
+
:s3_etags,
|
711
|
+
:image_digest)
|
659
712
|
SENSITIVE = []
|
660
713
|
include Aws::Structure
|
661
714
|
end
|
@@ -690,6 +743,11 @@ module Aws::RoboMaker
|
|
690
743
|
# The revision id of the robot application.
|
691
744
|
# @return [String]
|
692
745
|
#
|
746
|
+
# @!attribute [rw] environment
|
747
|
+
# The object that contains the Docker image URI used to create your
|
748
|
+
# robot application.
|
749
|
+
# @return [Types::Environment]
|
750
|
+
#
|
693
751
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateRobotApplicationVersionResponse AWS API Documentation
|
694
752
|
#
|
695
753
|
class CreateRobotApplicationVersionResponse < Struct.new(
|
@@ -699,7 +757,8 @@ module Aws::RoboMaker
|
|
699
757
|
:sources,
|
700
758
|
:robot_software_suite,
|
701
759
|
:last_updated_at,
|
702
|
-
:revision_id
|
760
|
+
:revision_id,
|
761
|
+
:environment)
|
703
762
|
SENSITIVE = []
|
704
763
|
include Aws::Structure
|
705
764
|
end
|
@@ -788,7 +847,7 @@ module Aws::RoboMaker
|
|
788
847
|
#
|
789
848
|
# {
|
790
849
|
# name: "Name", # required
|
791
|
-
# sources: [
|
850
|
+
# sources: [
|
792
851
|
# {
|
793
852
|
# s3_bucket: "S3Bucket",
|
794
853
|
# s3_key: "S3Key",
|
@@ -796,11 +855,11 @@ module Aws::RoboMaker
|
|
796
855
|
# },
|
797
856
|
# ],
|
798
857
|
# simulation_software_suite: { # required
|
799
|
-
# name: "Gazebo", # accepts Gazebo, RosbagPlay
|
858
|
+
# name: "Gazebo", # accepts Gazebo, RosbagPlay, SimulationRuntime
|
800
859
|
# version: "SimulationSoftwareSuiteVersionType",
|
801
860
|
# },
|
802
861
|
# robot_software_suite: { # required
|
803
|
-
# name: "ROS", # accepts ROS, ROS2
|
862
|
+
# name: "ROS", # accepts ROS, ROS2, General
|
804
863
|
# version: "Kinetic", # accepts Kinetic, Melodic, Dashing, Foxy
|
805
864
|
# },
|
806
865
|
# rendering_engine: {
|
@@ -810,6 +869,9 @@ module Aws::RoboMaker
|
|
810
869
|
# tags: {
|
811
870
|
# "TagKey" => "TagValue",
|
812
871
|
# },
|
872
|
+
# environment: {
|
873
|
+
# uri: "RepositoryUrl",
|
874
|
+
# },
|
813
875
|
# }
|
814
876
|
#
|
815
877
|
# @!attribute [rw] name
|
@@ -838,6 +900,11 @@ module Aws::RoboMaker
|
|
838
900
|
# simulation application.
|
839
901
|
# @return [Hash<String,String>]
|
840
902
|
#
|
903
|
+
# @!attribute [rw] environment
|
904
|
+
# The object that contains the Docker image URI used to create your
|
905
|
+
# simulation application.
|
906
|
+
# @return [Types::Environment]
|
907
|
+
#
|
841
908
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateSimulationApplicationRequest AWS API Documentation
|
842
909
|
#
|
843
910
|
class CreateSimulationApplicationRequest < Struct.new(
|
@@ -846,7 +913,8 @@ module Aws::RoboMaker
|
|
846
913
|
:simulation_software_suite,
|
847
914
|
:robot_software_suite,
|
848
915
|
:rendering_engine,
|
849
|
-
:tags
|
916
|
+
:tags,
|
917
|
+
:environment)
|
850
918
|
SENSITIVE = []
|
851
919
|
include Aws::Structure
|
852
920
|
end
|
@@ -892,6 +960,11 @@ module Aws::RoboMaker
|
|
892
960
|
# The list of all tags added to the simulation application.
|
893
961
|
# @return [Hash<String,String>]
|
894
962
|
#
|
963
|
+
# @!attribute [rw] environment
|
964
|
+
# The object that contains the Docker image URI that you used to
|
965
|
+
# create your simulation application.
|
966
|
+
# @return [Types::Environment]
|
967
|
+
#
|
895
968
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateSimulationApplicationResponse AWS API Documentation
|
896
969
|
#
|
897
970
|
class CreateSimulationApplicationResponse < Struct.new(
|
@@ -904,7 +977,8 @@ module Aws::RoboMaker
|
|
904
977
|
:rendering_engine,
|
905
978
|
:last_updated_at,
|
906
979
|
:revision_id,
|
907
|
-
:tags
|
980
|
+
:tags,
|
981
|
+
:environment)
|
908
982
|
SENSITIVE = []
|
909
983
|
include Aws::Structure
|
910
984
|
end
|
@@ -915,6 +989,8 @@ module Aws::RoboMaker
|
|
915
989
|
# {
|
916
990
|
# application: "Arn", # required
|
917
991
|
# current_revision_id: "RevisionId",
|
992
|
+
# s3_etags: ["S3Etag"],
|
993
|
+
# image_digest: "ImageDigest",
|
918
994
|
# }
|
919
995
|
#
|
920
996
|
# @!attribute [rw] application
|
@@ -927,11 +1003,23 @@ module Aws::RoboMaker
|
|
927
1003
|
# will be created.
|
928
1004
|
# @return [String]
|
929
1005
|
#
|
1006
|
+
# @!attribute [rw] s3_etags
|
1007
|
+
# The Amazon S3 eTag identifier for the zip file bundle that you use
|
1008
|
+
# to create the simulation application.
|
1009
|
+
# @return [Array<String>]
|
1010
|
+
#
|
1011
|
+
# @!attribute [rw] image_digest
|
1012
|
+
# The SHA256 digest used to identify the Docker image URI used to
|
1013
|
+
# created the simulation application.
|
1014
|
+
# @return [String]
|
1015
|
+
#
|
930
1016
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateSimulationApplicationVersionRequest AWS API Documentation
|
931
1017
|
#
|
932
1018
|
class CreateSimulationApplicationVersionRequest < Struct.new(
|
933
1019
|
:application,
|
934
|
-
:current_revision_id
|
1020
|
+
:current_revision_id,
|
1021
|
+
:s3_etags,
|
1022
|
+
:image_digest)
|
935
1023
|
SENSITIVE = []
|
936
1024
|
include Aws::Structure
|
937
1025
|
end
|
@@ -973,6 +1061,11 @@ module Aws::RoboMaker
|
|
973
1061
|
# The revision ID of the simulation application.
|
974
1062
|
# @return [String]
|
975
1063
|
#
|
1064
|
+
# @!attribute [rw] environment
|
1065
|
+
# The object that contains the Docker image URI used to create the
|
1066
|
+
# simulation application.
|
1067
|
+
# @return [Types::Environment]
|
1068
|
+
#
|
976
1069
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/CreateSimulationApplicationVersionResponse AWS API Documentation
|
977
1070
|
#
|
978
1071
|
class CreateSimulationApplicationVersionResponse < Struct.new(
|
@@ -984,7 +1077,8 @@ module Aws::RoboMaker
|
|
984
1077
|
:robot_software_suite,
|
985
1078
|
:rendering_engine,
|
986
1079
|
:last_updated_at,
|
987
|
-
:revision_id
|
1080
|
+
:revision_id,
|
1081
|
+
:environment)
|
988
1082
|
SENSITIVE = []
|
989
1083
|
include Aws::Structure
|
990
1084
|
end
|
@@ -1009,8 +1103,8 @@ module Aws::RoboMaker
|
|
1009
1103
|
# application: "Arn", # required
|
1010
1104
|
# application_version: "Version",
|
1011
1105
|
# launch_config: { # required
|
1012
|
-
# package_name: "Command",
|
1013
|
-
# launch_file: "Command",
|
1106
|
+
# package_name: "Command",
|
1107
|
+
# launch_file: "Command",
|
1014
1108
|
# environment_variables: {
|
1015
1109
|
# "EnvironmentVariableKey" => "EnvironmentVariableValue",
|
1016
1110
|
# },
|
@@ -1024,6 +1118,7 @@ module Aws::RoboMaker
|
|
1024
1118
|
# ],
|
1025
1119
|
# },
|
1026
1120
|
# stream_ui: false,
|
1121
|
+
# command: ["NonEmptyString"],
|
1027
1122
|
# },
|
1028
1123
|
# upload_configurations: [
|
1029
1124
|
# {
|
@@ -1050,8 +1145,8 @@ module Aws::RoboMaker
|
|
1050
1145
|
# application: "Arn", # required
|
1051
1146
|
# application_version: "Version",
|
1052
1147
|
# launch_config: { # required
|
1053
|
-
# package_name: "Command",
|
1054
|
-
# launch_file: "Command",
|
1148
|
+
# package_name: "Command",
|
1149
|
+
# launch_file: "Command",
|
1055
1150
|
# environment_variables: {
|
1056
1151
|
# "EnvironmentVariableKey" => "EnvironmentVariableValue",
|
1057
1152
|
# },
|
@@ -1065,6 +1160,7 @@ module Aws::RoboMaker
|
|
1065
1160
|
# ],
|
1066
1161
|
# },
|
1067
1162
|
# stream_ui: false,
|
1163
|
+
# command: ["NonEmptyString"],
|
1068
1164
|
# },
|
1069
1165
|
# upload_configurations: [
|
1070
1166
|
# {
|
@@ -1095,7 +1191,9 @@ module Aws::RoboMaker
|
|
1095
1191
|
# {
|
1096
1192
|
# name: "Name", # required
|
1097
1193
|
# s3_bucket: "S3Bucket", # required
|
1098
|
-
# s3_keys: ["
|
1194
|
+
# s3_keys: ["S3KeyOrPrefix"], # required
|
1195
|
+
# type: "Prefix", # accepts Prefix, Archive, File
|
1196
|
+
# destination: "Path",
|
1099
1197
|
# },
|
1100
1198
|
# ],
|
1101
1199
|
# tags: {
|
@@ -1108,6 +1206,8 @@ module Aws::RoboMaker
|
|
1108
1206
|
# },
|
1109
1207
|
# compute: {
|
1110
1208
|
# simulation_unit_limit: 1,
|
1209
|
+
# compute_type: "CPU", # accepts CPU, GPU_AND_CPU
|
1210
|
+
# gpu_unit_limit: 1,
|
1111
1211
|
# },
|
1112
1212
|
# }
|
1113
1213
|
#
|
@@ -1145,7 +1245,8 @@ module Aws::RoboMaker
|
|
1145
1245
|
#
|
1146
1246
|
# Continue
|
1147
1247
|
#
|
1148
|
-
# :
|
1248
|
+
# : Leaves the instance running for its maximum timeout duration after
|
1249
|
+
# a `4XX` error code.
|
1149
1250
|
#
|
1150
1251
|
# Fail
|
1151
1252
|
#
|
@@ -1796,12 +1897,39 @@ module Aws::RoboMaker
|
|
1796
1897
|
# The list of S3 keys identifying the data source files.
|
1797
1898
|
# @return [Array<Types::S3KeyOutput>]
|
1798
1899
|
#
|
1900
|
+
# @!attribute [rw] type
|
1901
|
+
# The data type for the data source that you're using for your
|
1902
|
+
# container image or simulation job. You can use this field to specify
|
1903
|
+
# whether your data source is an Archive, an Amazon S3 prefix, or a
|
1904
|
+
# file.
|
1905
|
+
#
|
1906
|
+
# If you don't specify a field, the default value is `File`.
|
1907
|
+
# @return [String]
|
1908
|
+
#
|
1909
|
+
# @!attribute [rw] destination
|
1910
|
+
# The location where your files are mounted in the container image.
|
1911
|
+
#
|
1912
|
+
# If you've specified the `type` of the data source as an `Archive`,
|
1913
|
+
# you must provide an Amazon S3 object key to your archive. The object
|
1914
|
+
# key must point to either a `.zip` or `.tar.gz` file.
|
1915
|
+
#
|
1916
|
+
# If you've specified the `type` of the data source as a `Prefix`,
|
1917
|
+
# you provide the Amazon S3 prefix that points to the files that you
|
1918
|
+
# are using for your data source.
|
1919
|
+
#
|
1920
|
+
# If you've specified the `type` of the data source as a `File`, you
|
1921
|
+
# provide the Amazon S3 path to the file that you're using as your
|
1922
|
+
# data source.
|
1923
|
+
# @return [String]
|
1924
|
+
#
|
1799
1925
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DataSource AWS API Documentation
|
1800
1926
|
#
|
1801
1927
|
class DataSource < Struct.new(
|
1802
1928
|
:name,
|
1803
1929
|
:s3_bucket,
|
1804
|
-
:s3_keys
|
1930
|
+
:s3_keys,
|
1931
|
+
:type,
|
1932
|
+
:destination)
|
1805
1933
|
SENSITIVE = []
|
1806
1934
|
include Aws::Structure
|
1807
1935
|
end
|
@@ -1814,7 +1942,9 @@ module Aws::RoboMaker
|
|
1814
1942
|
# {
|
1815
1943
|
# name: "Name", # required
|
1816
1944
|
# s3_bucket: "S3Bucket", # required
|
1817
|
-
# s3_keys: ["
|
1945
|
+
# s3_keys: ["S3KeyOrPrefix"], # required
|
1946
|
+
# type: "Prefix", # accepts Prefix, Archive, File
|
1947
|
+
# destination: "Path",
|
1818
1948
|
# }
|
1819
1949
|
#
|
1820
1950
|
# @!attribute [rw] name
|
@@ -1829,12 +1959,39 @@ module Aws::RoboMaker
|
|
1829
1959
|
# The list of S3 keys identifying the data source files.
|
1830
1960
|
# @return [Array<String>]
|
1831
1961
|
#
|
1962
|
+
# @!attribute [rw] type
|
1963
|
+
# The data type for the data source that you're using for your
|
1964
|
+
# container image or simulation job. You can use this field to specify
|
1965
|
+
# whether your data source is an Archive, an Amazon S3 prefix, or a
|
1966
|
+
# file.
|
1967
|
+
#
|
1968
|
+
# If you don't specify a field, the default value is `File`.
|
1969
|
+
# @return [String]
|
1970
|
+
#
|
1971
|
+
# @!attribute [rw] destination
|
1972
|
+
# The location where your files are mounted in the container image.
|
1973
|
+
#
|
1974
|
+
# If you've specified the `type` of the data source as an `Archive`,
|
1975
|
+
# you must provide an Amazon S3 object key to your archive. The object
|
1976
|
+
# key must point to either a `.zip` or `.tar.gz` file.
|
1977
|
+
#
|
1978
|
+
# If you've specified the `type` of the data source as a `Prefix`,
|
1979
|
+
# you provide the Amazon S3 prefix that points to the files that you
|
1980
|
+
# are using for your data source.
|
1981
|
+
#
|
1982
|
+
# If you've specified the `type` of the data source as a `File`, you
|
1983
|
+
# provide the Amazon S3 path to the file that you're using as your
|
1984
|
+
# data source.
|
1985
|
+
# @return [String]
|
1986
|
+
#
|
1832
1987
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DataSourceConfig AWS API Documentation
|
1833
1988
|
#
|
1834
1989
|
class DataSourceConfig < Struct.new(
|
1835
1990
|
:name,
|
1836
1991
|
:s3_bucket,
|
1837
|
-
:s3_keys
|
1992
|
+
:s3_keys,
|
1993
|
+
:type,
|
1994
|
+
:destination)
|
1838
1995
|
SENSITIVE = []
|
1839
1996
|
include Aws::Structure
|
1840
1997
|
end
|
@@ -2400,6 +2557,16 @@ module Aws::RoboMaker
|
|
2400
2557
|
# The list of all tags added to the specified robot application.
|
2401
2558
|
# @return [Hash<String,String>]
|
2402
2559
|
#
|
2560
|
+
# @!attribute [rw] environment
|
2561
|
+
# The object that contains the Docker image URI used to create the
|
2562
|
+
# robot application.
|
2563
|
+
# @return [Types::Environment]
|
2564
|
+
#
|
2565
|
+
# @!attribute [rw] image_digest
|
2566
|
+
# A SHA256 identifier for the Docker image that you use for your robot
|
2567
|
+
# application.
|
2568
|
+
# @return [String]
|
2569
|
+
#
|
2403
2570
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeRobotApplicationResponse AWS API Documentation
|
2404
2571
|
#
|
2405
2572
|
class DescribeRobotApplicationResponse < Struct.new(
|
@@ -2410,7 +2577,9 @@ module Aws::RoboMaker
|
|
2410
2577
|
:robot_software_suite,
|
2411
2578
|
:revision_id,
|
2412
2579
|
:last_updated_at,
|
2413
|
-
:tags
|
2580
|
+
:tags,
|
2581
|
+
:environment,
|
2582
|
+
:image_digest)
|
2414
2583
|
SENSITIVE = []
|
2415
2584
|
include Aws::Structure
|
2416
2585
|
end
|
@@ -2558,6 +2727,16 @@ module Aws::RoboMaker
|
|
2558
2727
|
# The list of all tags added to the specified simulation application.
|
2559
2728
|
# @return [Hash<String,String>]
|
2560
2729
|
#
|
2730
|
+
# @!attribute [rw] environment
|
2731
|
+
# The object that contains the Docker image URI used to create the
|
2732
|
+
# simulation application.
|
2733
|
+
# @return [Types::Environment]
|
2734
|
+
#
|
2735
|
+
# @!attribute [rw] image_digest
|
2736
|
+
# A SHA256 identifier for the Docker image that you use for your
|
2737
|
+
# simulation application.
|
2738
|
+
# @return [String]
|
2739
|
+
#
|
2561
2740
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/DescribeSimulationApplicationResponse AWS API Documentation
|
2562
2741
|
#
|
2563
2742
|
class DescribeSimulationApplicationResponse < Struct.new(
|
@@ -2570,7 +2749,9 @@ module Aws::RoboMaker
|
|
2570
2749
|
:rendering_engine,
|
2571
2750
|
:revision_id,
|
2572
2751
|
:last_updated_at,
|
2573
|
-
:tags
|
2752
|
+
:tags,
|
2753
|
+
:environment,
|
2754
|
+
:image_digest)
|
2574
2755
|
SENSITIVE = []
|
2575
2756
|
include Aws::Structure
|
2576
2757
|
end
|
@@ -3311,6 +3492,29 @@ module Aws::RoboMaker
|
|
3311
3492
|
include Aws::Structure
|
3312
3493
|
end
|
3313
3494
|
|
3495
|
+
# The object that contains the Docker image URI for either your robot or
|
3496
|
+
# simulation applications.
|
3497
|
+
#
|
3498
|
+
# @note When making an API call, you may pass Environment
|
3499
|
+
# data as a hash:
|
3500
|
+
#
|
3501
|
+
# {
|
3502
|
+
# uri: "RepositoryUrl",
|
3503
|
+
# }
|
3504
|
+
#
|
3505
|
+
# @!attribute [rw] uri
|
3506
|
+
# The Docker image URI for either your robot or simulation
|
3507
|
+
# applications.
|
3508
|
+
# @return [String]
|
3509
|
+
#
|
3510
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/Environment AWS API Documentation
|
3511
|
+
#
|
3512
|
+
class Environment < Struct.new(
|
3513
|
+
:uri)
|
3514
|
+
SENSITIVE = []
|
3515
|
+
include Aws::Structure
|
3516
|
+
end
|
3517
|
+
|
3314
3518
|
# Information about a failed create simulation job request.
|
3315
3519
|
#
|
3316
3520
|
# @!attribute [rw] request
|
@@ -3537,8 +3741,8 @@ module Aws::RoboMaker
|
|
3537
3741
|
# data as a hash:
|
3538
3742
|
#
|
3539
3743
|
# {
|
3540
|
-
# package_name: "Command",
|
3541
|
-
# launch_file: "Command",
|
3744
|
+
# package_name: "Command",
|
3745
|
+
# launch_file: "Command",
|
3542
3746
|
# environment_variables: {
|
3543
3747
|
# "EnvironmentVariableKey" => "EnvironmentVariableValue",
|
3544
3748
|
# },
|
@@ -3552,6 +3756,7 @@ module Aws::RoboMaker
|
|
3552
3756
|
# ],
|
3553
3757
|
# },
|
3554
3758
|
# stream_ui: false,
|
3759
|
+
# command: ["NonEmptyString"],
|
3555
3760
|
# }
|
3556
3761
|
#
|
3557
3762
|
# @!attribute [rw] package_name
|
@@ -3578,6 +3783,16 @@ module Aws::RoboMaker
|
|
3578
3783
|
# component. It must have a graphical user interface.
|
3579
3784
|
# @return [Boolean]
|
3580
3785
|
#
|
3786
|
+
# @!attribute [rw] command
|
3787
|
+
# If you've specified `General` as the value for your
|
3788
|
+
# `RobotSoftwareSuite`, you can use this field to specify a list of
|
3789
|
+
# commands for your container image.
|
3790
|
+
#
|
3791
|
+
# If you've specified `SimulationRuntime` as the value for your
|
3792
|
+
# `SimulationSoftwareSuite`, you can use this field to specify a list
|
3793
|
+
# of commands for your container image.
|
3794
|
+
# @return [Array<String>]
|
3795
|
+
#
|
3581
3796
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/LaunchConfig AWS API Documentation
|
3582
3797
|
#
|
3583
3798
|
class LaunchConfig < Struct.new(
|
@@ -3585,7 +3800,8 @@ module Aws::RoboMaker
|
|
3585
3800
|
:launch_file,
|
3586
3801
|
:environment_variables,
|
3587
3802
|
:port_forwarding_config,
|
3588
|
-
:stream_ui
|
3803
|
+
:stream_ui,
|
3804
|
+
:command)
|
3589
3805
|
SENSITIVE = []
|
3590
3806
|
include Aws::Structure
|
3591
3807
|
end
|
@@ -4818,8 +5034,8 @@ module Aws::RoboMaker
|
|
4818
5034
|
# application: "Arn", # required
|
4819
5035
|
# application_version: "Version",
|
4820
5036
|
# launch_config: { # required
|
4821
|
-
# package_name: "Command",
|
4822
|
-
# launch_file: "Command",
|
5037
|
+
# package_name: "Command",
|
5038
|
+
# launch_file: "Command",
|
4823
5039
|
# environment_variables: {
|
4824
5040
|
# "EnvironmentVariableKey" => "EnvironmentVariableValue",
|
4825
5041
|
# },
|
@@ -4833,6 +5049,7 @@ module Aws::RoboMaker
|
|
4833
5049
|
# ],
|
4834
5050
|
# },
|
4835
5051
|
# stream_ui: false,
|
5052
|
+
# command: ["NonEmptyString"],
|
4836
5053
|
# },
|
4837
5054
|
# upload_configurations: [
|
4838
5055
|
# {
|
@@ -4989,7 +5206,7 @@ module Aws::RoboMaker
|
|
4989
5206
|
# data as a hash:
|
4990
5207
|
#
|
4991
5208
|
# {
|
4992
|
-
# name: "ROS", # accepts ROS, ROS2
|
5209
|
+
# name: "ROS", # accepts ROS, ROS2, General
|
4993
5210
|
# version: "Kinetic", # accepts Kinetic, Melodic, Dashing, Foxy
|
4994
5211
|
# }
|
4995
5212
|
#
|
@@ -5084,8 +5301,8 @@ module Aws::RoboMaker
|
|
5084
5301
|
# application: "Arn", # required
|
5085
5302
|
# application_version: "Version",
|
5086
5303
|
# launch_config: { # required
|
5087
|
-
# package_name: "Command",
|
5088
|
-
# launch_file: "Command",
|
5304
|
+
# package_name: "Command",
|
5305
|
+
# launch_file: "Command",
|
5089
5306
|
# environment_variables: {
|
5090
5307
|
# "EnvironmentVariableKey" => "EnvironmentVariableValue",
|
5091
5308
|
# },
|
@@ -5099,6 +5316,7 @@ module Aws::RoboMaker
|
|
5099
5316
|
# ],
|
5100
5317
|
# },
|
5101
5318
|
# stream_ui: false,
|
5319
|
+
# command: ["NonEmptyString"],
|
5102
5320
|
# },
|
5103
5321
|
# upload_configurations: [
|
5104
5322
|
# {
|
@@ -5248,7 +5466,8 @@ module Aws::RoboMaker
|
|
5248
5466
|
#
|
5249
5467
|
# Continue
|
5250
5468
|
#
|
5251
|
-
# :
|
5469
|
+
# : Leaves the host running for its maximum timeout duration after a
|
5470
|
+
# `4XX` error code.
|
5252
5471
|
#
|
5253
5472
|
# Fail
|
5254
5473
|
#
|
@@ -5464,8 +5683,8 @@ module Aws::RoboMaker
|
|
5464
5683
|
# application: "Arn", # required
|
5465
5684
|
# application_version: "Version",
|
5466
5685
|
# launch_config: { # required
|
5467
|
-
# package_name: "Command",
|
5468
|
-
# launch_file: "Command",
|
5686
|
+
# package_name: "Command",
|
5687
|
+
# launch_file: "Command",
|
5469
5688
|
# environment_variables: {
|
5470
5689
|
# "EnvironmentVariableKey" => "EnvironmentVariableValue",
|
5471
5690
|
# },
|
@@ -5479,6 +5698,7 @@ module Aws::RoboMaker
|
|
5479
5698
|
# ],
|
5480
5699
|
# },
|
5481
5700
|
# stream_ui: false,
|
5701
|
+
# command: ["NonEmptyString"],
|
5482
5702
|
# },
|
5483
5703
|
# upload_configurations: [
|
5484
5704
|
# {
|
@@ -5505,8 +5725,8 @@ module Aws::RoboMaker
|
|
5505
5725
|
# application: "Arn", # required
|
5506
5726
|
# application_version: "Version",
|
5507
5727
|
# launch_config: { # required
|
5508
|
-
# package_name: "Command",
|
5509
|
-
# launch_file: "Command",
|
5728
|
+
# package_name: "Command",
|
5729
|
+
# launch_file: "Command",
|
5510
5730
|
# environment_variables: {
|
5511
5731
|
# "EnvironmentVariableKey" => "EnvironmentVariableValue",
|
5512
5732
|
# },
|
@@ -5520,6 +5740,7 @@ module Aws::RoboMaker
|
|
5520
5740
|
# ],
|
5521
5741
|
# },
|
5522
5742
|
# stream_ui: false,
|
5743
|
+
# command: ["NonEmptyString"],
|
5523
5744
|
# },
|
5524
5745
|
# upload_configurations: [
|
5525
5746
|
# {
|
@@ -5550,7 +5771,9 @@ module Aws::RoboMaker
|
|
5550
5771
|
# {
|
5551
5772
|
# name: "Name", # required
|
5552
5773
|
# s3_bucket: "S3Bucket", # required
|
5553
|
-
# s3_keys: ["
|
5774
|
+
# s3_keys: ["S3KeyOrPrefix"], # required
|
5775
|
+
# type: "Prefix", # accepts Prefix, Archive, File
|
5776
|
+
# destination: "Path",
|
5554
5777
|
# },
|
5555
5778
|
# ],
|
5556
5779
|
# vpc_config: {
|
@@ -5560,6 +5783,8 @@ module Aws::RoboMaker
|
|
5560
5783
|
# },
|
5561
5784
|
# compute: {
|
5562
5785
|
# simulation_unit_limit: 1,
|
5786
|
+
# compute_type: "CPU", # accepts CPU, GPU_AND_CPU
|
5787
|
+
# gpu_unit_limit: 1,
|
5563
5788
|
# },
|
5564
5789
|
# tags: {
|
5565
5790
|
# "TagKey" => "TagValue",
|
@@ -5591,7 +5816,8 @@ module Aws::RoboMaker
|
|
5591
5816
|
#
|
5592
5817
|
# Continue
|
5593
5818
|
#
|
5594
|
-
# :
|
5819
|
+
# : Leaves the host running for its maximum timeout duration after a
|
5820
|
+
# `4XX` error code.
|
5595
5821
|
#
|
5596
5822
|
# Fail
|
5597
5823
|
#
|
@@ -5689,6 +5915,10 @@ module Aws::RoboMaker
|
|
5689
5915
|
# The names of the data sources.
|
5690
5916
|
# @return [Array<String>]
|
5691
5917
|
#
|
5918
|
+
# @!attribute [rw] compute_type
|
5919
|
+
# The compute type for the simulation job summary.
|
5920
|
+
# @return [String]
|
5921
|
+
#
|
5692
5922
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/SimulationJobSummary AWS API Documentation
|
5693
5923
|
#
|
5694
5924
|
class SimulationJobSummary < Struct.new(
|
@@ -5698,7 +5928,8 @@ module Aws::RoboMaker
|
|
5698
5928
|
:status,
|
5699
5929
|
:simulation_application_names,
|
5700
5930
|
:robot_application_names,
|
5701
|
-
:data_source_names
|
5931
|
+
:data_source_names,
|
5932
|
+
:compute_type)
|
5702
5933
|
SENSITIVE = []
|
5703
5934
|
include Aws::Structure
|
5704
5935
|
end
|
@@ -5709,7 +5940,7 @@ module Aws::RoboMaker
|
|
5709
5940
|
# data as a hash:
|
5710
5941
|
#
|
5711
5942
|
# {
|
5712
|
-
# name: "Gazebo", # accepts Gazebo, RosbagPlay
|
5943
|
+
# name: "Gazebo", # accepts Gazebo, RosbagPlay, SimulationRuntime
|
5713
5944
|
# version: "SimulationSoftwareSuiteVersionType",
|
5714
5945
|
# }
|
5715
5946
|
#
|
@@ -5819,8 +6050,8 @@ module Aws::RoboMaker
|
|
5819
6050
|
# application: "Arn", # required
|
5820
6051
|
# application_version: "Version",
|
5821
6052
|
# launch_config: { # required
|
5822
|
-
# package_name: "Command",
|
5823
|
-
# launch_file: "Command",
|
6053
|
+
# package_name: "Command",
|
6054
|
+
# launch_file: "Command",
|
5824
6055
|
# environment_variables: {
|
5825
6056
|
# "EnvironmentVariableKey" => "EnvironmentVariableValue",
|
5826
6057
|
# },
|
@@ -5834,6 +6065,7 @@ module Aws::RoboMaker
|
|
5834
6065
|
# ],
|
5835
6066
|
# },
|
5836
6067
|
# stream_ui: false,
|
6068
|
+
# command: ["NonEmptyString"],
|
5837
6069
|
# },
|
5838
6070
|
# upload_configurations: [
|
5839
6071
|
# {
|
@@ -5860,8 +6092,8 @@ module Aws::RoboMaker
|
|
5860
6092
|
# application: "Arn", # required
|
5861
6093
|
# application_version: "Version",
|
5862
6094
|
# launch_config: { # required
|
5863
|
-
# package_name: "Command",
|
5864
|
-
# launch_file: "Command",
|
6095
|
+
# package_name: "Command",
|
6096
|
+
# launch_file: "Command",
|
5865
6097
|
# environment_variables: {
|
5866
6098
|
# "EnvironmentVariableKey" => "EnvironmentVariableValue",
|
5867
6099
|
# },
|
@@ -5875,6 +6107,7 @@ module Aws::RoboMaker
|
|
5875
6107
|
# ],
|
5876
6108
|
# },
|
5877
6109
|
# stream_ui: false,
|
6110
|
+
# command: ["NonEmptyString"],
|
5878
6111
|
# },
|
5879
6112
|
# upload_configurations: [
|
5880
6113
|
# {
|
@@ -5905,7 +6138,9 @@ module Aws::RoboMaker
|
|
5905
6138
|
# {
|
5906
6139
|
# name: "Name", # required
|
5907
6140
|
# s3_bucket: "S3Bucket", # required
|
5908
|
-
# s3_keys: ["
|
6141
|
+
# s3_keys: ["S3KeyOrPrefix"], # required
|
6142
|
+
# type: "Prefix", # accepts Prefix, Archive, File
|
6143
|
+
# destination: "Path",
|
5909
6144
|
# },
|
5910
6145
|
# ],
|
5911
6146
|
# vpc_config: {
|
@@ -5915,6 +6150,8 @@ module Aws::RoboMaker
|
|
5915
6150
|
# },
|
5916
6151
|
# compute: {
|
5917
6152
|
# simulation_unit_limit: 1,
|
6153
|
+
# compute_type: "CPU", # accepts CPU, GPU_AND_CPU
|
6154
|
+
# gpu_unit_limit: 1,
|
5918
6155
|
# },
|
5919
6156
|
# tags: {
|
5920
6157
|
# "TagKey" => "TagValue",
|
@@ -6412,7 +6649,7 @@ module Aws::RoboMaker
|
|
6412
6649
|
#
|
6413
6650
|
# {
|
6414
6651
|
# application: "Arn", # required
|
6415
|
-
# sources: [
|
6652
|
+
# sources: [
|
6416
6653
|
# {
|
6417
6654
|
# s3_bucket: "S3Bucket",
|
6418
6655
|
# s3_key: "S3Key",
|
@@ -6420,10 +6657,13 @@ module Aws::RoboMaker
|
|
6420
6657
|
# },
|
6421
6658
|
# ],
|
6422
6659
|
# robot_software_suite: { # required
|
6423
|
-
# name: "ROS", # accepts ROS, ROS2
|
6660
|
+
# name: "ROS", # accepts ROS, ROS2, General
|
6424
6661
|
# version: "Kinetic", # accepts Kinetic, Melodic, Dashing, Foxy
|
6425
6662
|
# },
|
6426
6663
|
# current_revision_id: "RevisionId",
|
6664
|
+
# environment: {
|
6665
|
+
# uri: "RepositoryUrl",
|
6666
|
+
# },
|
6427
6667
|
# }
|
6428
6668
|
#
|
6429
6669
|
# @!attribute [rw] application
|
@@ -6443,13 +6683,19 @@ module Aws::RoboMaker
|
|
6443
6683
|
# The revision id for the robot application.
|
6444
6684
|
# @return [String]
|
6445
6685
|
#
|
6686
|
+
# @!attribute [rw] environment
|
6687
|
+
# The object that contains the Docker image URI for your robot
|
6688
|
+
# application.
|
6689
|
+
# @return [Types::Environment]
|
6690
|
+
#
|
6446
6691
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/UpdateRobotApplicationRequest AWS API Documentation
|
6447
6692
|
#
|
6448
6693
|
class UpdateRobotApplicationRequest < Struct.new(
|
6449
6694
|
:application,
|
6450
6695
|
:sources,
|
6451
6696
|
:robot_software_suite,
|
6452
|
-
:current_revision_id
|
6697
|
+
:current_revision_id,
|
6698
|
+
:environment)
|
6453
6699
|
SENSITIVE = []
|
6454
6700
|
include Aws::Structure
|
6455
6701
|
end
|
@@ -6484,6 +6730,11 @@ module Aws::RoboMaker
|
|
6484
6730
|
# The revision id of the robot application.
|
6485
6731
|
# @return [String]
|
6486
6732
|
#
|
6733
|
+
# @!attribute [rw] environment
|
6734
|
+
# The object that contains the Docker image URI for your robot
|
6735
|
+
# application.
|
6736
|
+
# @return [Types::Environment]
|
6737
|
+
#
|
6487
6738
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/UpdateRobotApplicationResponse AWS API Documentation
|
6488
6739
|
#
|
6489
6740
|
class UpdateRobotApplicationResponse < Struct.new(
|
@@ -6493,7 +6744,8 @@ module Aws::RoboMaker
|
|
6493
6744
|
:sources,
|
6494
6745
|
:robot_software_suite,
|
6495
6746
|
:last_updated_at,
|
6496
|
-
:revision_id
|
6747
|
+
:revision_id,
|
6748
|
+
:environment)
|
6497
6749
|
SENSITIVE = []
|
6498
6750
|
include Aws::Structure
|
6499
6751
|
end
|
@@ -6503,7 +6755,7 @@ module Aws::RoboMaker
|
|
6503
6755
|
#
|
6504
6756
|
# {
|
6505
6757
|
# application: "Arn", # required
|
6506
|
-
# sources: [
|
6758
|
+
# sources: [
|
6507
6759
|
# {
|
6508
6760
|
# s3_bucket: "S3Bucket",
|
6509
6761
|
# s3_key: "S3Key",
|
@@ -6511,11 +6763,11 @@ module Aws::RoboMaker
|
|
6511
6763
|
# },
|
6512
6764
|
# ],
|
6513
6765
|
# simulation_software_suite: { # required
|
6514
|
-
# name: "Gazebo", # accepts Gazebo, RosbagPlay
|
6766
|
+
# name: "Gazebo", # accepts Gazebo, RosbagPlay, SimulationRuntime
|
6515
6767
|
# version: "SimulationSoftwareSuiteVersionType",
|
6516
6768
|
# },
|
6517
6769
|
# robot_software_suite: { # required
|
6518
|
-
# name: "ROS", # accepts ROS, ROS2
|
6770
|
+
# name: "ROS", # accepts ROS, ROS2, General
|
6519
6771
|
# version: "Kinetic", # accepts Kinetic, Melodic, Dashing, Foxy
|
6520
6772
|
# },
|
6521
6773
|
# rendering_engine: {
|
@@ -6523,6 +6775,9 @@ module Aws::RoboMaker
|
|
6523
6775
|
# version: "RenderingEngineVersionType",
|
6524
6776
|
# },
|
6525
6777
|
# current_revision_id: "RevisionId",
|
6778
|
+
# environment: {
|
6779
|
+
# uri: "RepositoryUrl",
|
6780
|
+
# },
|
6526
6781
|
# }
|
6527
6782
|
#
|
6528
6783
|
# @!attribute [rw] application
|
@@ -6549,6 +6804,11 @@ module Aws::RoboMaker
|
|
6549
6804
|
# The revision id for the robot application.
|
6550
6805
|
# @return [String]
|
6551
6806
|
#
|
6807
|
+
# @!attribute [rw] environment
|
6808
|
+
# The object that contains the Docker image URI for your simulation
|
6809
|
+
# application.
|
6810
|
+
# @return [Types::Environment]
|
6811
|
+
#
|
6552
6812
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/UpdateSimulationApplicationRequest AWS API Documentation
|
6553
6813
|
#
|
6554
6814
|
class UpdateSimulationApplicationRequest < Struct.new(
|
@@ -6557,7 +6817,8 @@ module Aws::RoboMaker
|
|
6557
6817
|
:simulation_software_suite,
|
6558
6818
|
:robot_software_suite,
|
6559
6819
|
:rendering_engine,
|
6560
|
-
:current_revision_id
|
6820
|
+
:current_revision_id,
|
6821
|
+
:environment)
|
6561
6822
|
SENSITIVE = []
|
6562
6823
|
include Aws::Structure
|
6563
6824
|
end
|
@@ -6600,6 +6861,11 @@ module Aws::RoboMaker
|
|
6600
6861
|
# The revision id of the simulation application.
|
6601
6862
|
# @return [String]
|
6602
6863
|
#
|
6864
|
+
# @!attribute [rw] environment
|
6865
|
+
# The object that contains the Docker image URI used for your
|
6866
|
+
# simulation application.
|
6867
|
+
# @return [Types::Environment]
|
6868
|
+
#
|
6603
6869
|
# @see http://docs.aws.amazon.com/goto/WebAPI/robomaker-2018-06-29/UpdateSimulationApplicationResponse AWS API Documentation
|
6604
6870
|
#
|
6605
6871
|
class UpdateSimulationApplicationResponse < Struct.new(
|
@@ -6611,7 +6877,8 @@ module Aws::RoboMaker
|
|
6611
6877
|
:robot_software_suite,
|
6612
6878
|
:rendering_engine,
|
6613
6879
|
:last_updated_at,
|
6614
|
-
:revision_id
|
6880
|
+
:revision_id,
|
6881
|
+
:environment)
|
6615
6882
|
SENSITIVE = []
|
6616
6883
|
include Aws::Structure
|
6617
6884
|
end
|