aws-sdk-healthlake 1.3.0 → 1.7.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -44,10 +44,22 @@ module Aws::HealthLake
44
44
  # {
45
45
  # datastore_name: "DatastoreName",
46
46
  # datastore_type_version: "R4", # required, accepts R4
47
+ # sse_configuration: {
48
+ # kms_encryption_config: { # required
49
+ # cmk_type: "CUSTOMER_MANAGED_KMS_KEY", # required, accepts CUSTOMER_MANAGED_KMS_KEY, AWS_OWNED_KMS_KEY
50
+ # kms_key_id: "EncryptionKeyID",
51
+ # },
52
+ # },
47
53
  # preload_data_config: {
48
54
  # preload_data_type: "SYNTHEA", # required, accepts SYNTHEA
49
55
  # },
50
56
  # client_token: "ClientTokenString",
57
+ # tags: [
58
+ # {
59
+ # key: "TagKey", # required
60
+ # value: "TagValue", # required
61
+ # },
62
+ # ],
51
63
  # }
52
64
  #
53
65
  # @!attribute [rw] datastore_name
@@ -59,6 +71,11 @@ module Aws::HealthLake
59
71
  # R4.
60
72
  # @return [String]
61
73
  #
74
+ # @!attribute [rw] sse_configuration
75
+ # The server-side encryption key configuration for a customer provided
76
+ # encryption key specified for creating a Data Store.
77
+ # @return [Types::SseConfiguration]
78
+ #
62
79
  # @!attribute [rw] preload_data_config
63
80
  # Optional parameter to preload data upon creation of the Data Store.
64
81
  # Currently, the only supported preloaded data is synthetic data
@@ -72,13 +89,19 @@ module Aws::HealthLake
72
89
  # not need to pass this option.
73
90
  # @return [String]
74
91
  #
92
+ # @!attribute [rw] tags
93
+ # Resource tags that are applied to a Data Store when it is created.
94
+ # @return [Array<Types::Tag>]
95
+ #
75
96
  # @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/CreateFHIRDatastoreRequest AWS API Documentation
76
97
  #
77
98
  class CreateFHIRDatastoreRequest < Struct.new(
78
99
  :datastore_name,
79
100
  :datastore_type_version,
101
+ :sse_configuration,
80
102
  :preload_data_config,
81
- :client_token)
103
+ :client_token,
104
+ :tags)
82
105
  SENSITIVE = []
83
106
  include Aws::Structure
84
107
  end
@@ -191,6 +214,11 @@ module Aws::HealthLake
191
214
  # own endpoint with Data Store ID in the endpoint URL.
192
215
  # @return [String]
193
216
  #
217
+ # @!attribute [rw] sse_configuration
218
+ # The server-side encryption key configuration for a customer provided
219
+ # encryption key (CMK).
220
+ # @return [Types::SseConfiguration]
221
+ #
194
222
  # @!attribute [rw] preload_data_config
195
223
  # The preloaded data configuration for the Data Store. Only data
196
224
  # preloaded from Synthea is supported.
@@ -206,6 +234,7 @@ module Aws::HealthLake
206
234
  :created_at,
207
235
  :datastore_type_version,
208
236
  :datastore_endpoint,
237
+ :sse_configuration,
209
238
  :preload_data_config)
210
239
  SENSITIVE = []
211
240
  include Aws::Structure
@@ -463,6 +492,11 @@ module Aws::HealthLake
463
492
  # was created.
464
493
  # @return [Types::InputDataConfig]
465
494
  #
495
+ # @!attribute [rw] job_output_data_config
496
+ # The output data configuration that was supplied when the export job
497
+ # was created.
498
+ # @return [Types::OutputDataConfig]
499
+ #
466
500
  # @!attribute [rw] data_access_role_arn
467
501
  # The Amazon Resource Name (ARN) that gives Amazon HealthLake access
468
502
  # to your input data.
@@ -483,6 +517,7 @@ module Aws::HealthLake
483
517
  :end_time,
484
518
  :datastore_id,
485
519
  :input_data_config,
520
+ :job_output_data_config,
486
521
  :data_access_role_arn,
487
522
  :message)
488
523
  SENSITIVE = []
@@ -491,12 +526,9 @@ module Aws::HealthLake
491
526
 
492
527
  # The input properties for an import job.
493
528
  #
494
- # @note When making an API call, you may pass InputDataConfig
495
- # data as a hash:
529
+ # @note InputDataConfig is a union - when making an API calls you must set exactly one of the members.
496
530
  #
497
- # {
498
- # s3_uri: "S3Uri",
499
- # }
531
+ # @note InputDataConfig is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of InputDataConfig corresponding to the set member.
500
532
  #
501
533
  # @!attribute [rw] s3_uri
502
534
  # The S3Uri is the user specified S3 location of the FHIR data to be
@@ -506,9 +538,14 @@ module Aws::HealthLake
506
538
  # @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/InputDataConfig AWS API Documentation
507
539
  #
508
540
  class InputDataConfig < Struct.new(
509
- :s3_uri)
541
+ :s3_uri,
542
+ :unknown)
510
543
  SENSITIVE = []
511
544
  include Aws::Structure
545
+ include Aws::Structure::Union
546
+
547
+ class S3Uri < InputDataConfig; end
548
+ class Unknown < InputDataConfig; end
512
549
  end
513
550
 
514
551
  # Unknown error occurs in the service.
@@ -524,6 +561,37 @@ module Aws::HealthLake
524
561
  include Aws::Structure
525
562
  end
526
563
 
564
+ # The customer-managed-key(CMK) used when creating a Data Store. If a
565
+ # customer owned key is not specified, an AWS owned key will be used for
566
+ # encryption.
567
+ #
568
+ # @note When making an API call, you may pass KmsEncryptionConfig
569
+ # data as a hash:
570
+ #
571
+ # {
572
+ # cmk_type: "CUSTOMER_MANAGED_KMS_KEY", # required, accepts CUSTOMER_MANAGED_KMS_KEY, AWS_OWNED_KMS_KEY
573
+ # kms_key_id: "EncryptionKeyID",
574
+ # }
575
+ #
576
+ # @!attribute [rw] cmk_type
577
+ # The type of customer-managed-key(CMK) used for encyrption. The two
578
+ # types of supported CMKs are customer owned CMKs and AWS owned CMKs.
579
+ # @return [String]
580
+ #
581
+ # @!attribute [rw] kms_key_id
582
+ # The KMS encryption key id/alias used to encrypt the Data Store
583
+ # contents at rest.
584
+ # @return [String]
585
+ #
586
+ # @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/KmsEncryptionConfig AWS API Documentation
587
+ #
588
+ class KmsEncryptionConfig < Struct.new(
589
+ :cmk_type,
590
+ :kms_key_id)
591
+ SENSITIVE = []
592
+ include Aws::Structure
593
+ end
594
+
527
595
  # @note When making an API call, you may pass ListFHIRDatastoresRequest
528
596
  # data as a hash:
529
597
  #
@@ -579,27 +647,223 @@ module Aws::HealthLake
579
647
  include Aws::Structure
580
648
  end
581
649
 
582
- # The output data configuration that was supplied when the export job
583
- # was created.
650
+ # @note When making an API call, you may pass ListFHIRExportJobsRequest
651
+ # data as a hash:
652
+ #
653
+ # {
654
+ # datastore_id: "DatastoreId", # required
655
+ # next_token: "NextToken",
656
+ # max_results: 1,
657
+ # job_name: "JobName",
658
+ # job_status: "SUBMITTED", # accepts SUBMITTED, IN_PROGRESS, COMPLETED_WITH_ERRORS, COMPLETED, FAILED
659
+ # submitted_before: Time.now,
660
+ # submitted_after: Time.now,
661
+ # }
662
+ #
663
+ # @!attribute [rw] datastore_id
664
+ # This parameter limits the response to the export job with the
665
+ # specified Data Store ID.
666
+ # @return [String]
667
+ #
668
+ # @!attribute [rw] next_token
669
+ # A pagination token used to identify the next page of results to
670
+ # return for a ListFHIRExportJobs query.
671
+ # @return [String]
672
+ #
673
+ # @!attribute [rw] max_results
674
+ # This parameter limits the number of results returned for a
675
+ # ListFHIRExportJobs to a maximum quantity specified by the user.
676
+ # @return [Integer]
677
+ #
678
+ # @!attribute [rw] job_name
679
+ # This parameter limits the response to the export job with the
680
+ # specified job name.
681
+ # @return [String]
682
+ #
683
+ # @!attribute [rw] job_status
684
+ # This parameter limits the response to the export jobs with the
685
+ # specified job status.
686
+ # @return [String]
687
+ #
688
+ # @!attribute [rw] submitted_before
689
+ # This parameter limits the response to FHIR export jobs submitted
690
+ # before a user specified date.
691
+ # @return [Time]
692
+ #
693
+ # @!attribute [rw] submitted_after
694
+ # This parameter limits the response to FHIR export jobs submitted
695
+ # after a user specified date.
696
+ # @return [Time]
584
697
  #
585
- # @note When making an API call, you may pass OutputDataConfig
698
+ # @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/ListFHIRExportJobsRequest AWS API Documentation
699
+ #
700
+ class ListFHIRExportJobsRequest < Struct.new(
701
+ :datastore_id,
702
+ :next_token,
703
+ :max_results,
704
+ :job_name,
705
+ :job_status,
706
+ :submitted_before,
707
+ :submitted_after)
708
+ SENSITIVE = []
709
+ include Aws::Structure
710
+ end
711
+
712
+ # @!attribute [rw] export_job_properties_list
713
+ # The properties of listed FHIR export jobs, including the ID, ARN,
714
+ # name, and the status of the job.
715
+ # @return [Array<Types::ExportJobProperties>]
716
+ #
717
+ # @!attribute [rw] next_token
718
+ # A pagination token used to identify the next page of results to
719
+ # return for a ListFHIRExportJobs query.
720
+ # @return [String]
721
+ #
722
+ # @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/ListFHIRExportJobsResponse AWS API Documentation
723
+ #
724
+ class ListFHIRExportJobsResponse < Struct.new(
725
+ :export_job_properties_list,
726
+ :next_token)
727
+ SENSITIVE = []
728
+ include Aws::Structure
729
+ end
730
+
731
+ # @note When making an API call, you may pass ListFHIRImportJobsRequest
586
732
  # data as a hash:
587
733
  #
588
734
  # {
589
- # s3_uri: "S3Uri",
735
+ # datastore_id: "DatastoreId", # required
736
+ # next_token: "NextToken",
737
+ # max_results: 1,
738
+ # job_name: "JobName",
739
+ # job_status: "SUBMITTED", # accepts SUBMITTED, IN_PROGRESS, COMPLETED_WITH_ERRORS, COMPLETED, FAILED
740
+ # submitted_before: Time.now,
741
+ # submitted_after: Time.now,
590
742
  # }
591
743
  #
592
- # @!attribute [rw] s3_uri
593
- # The S3Uri is the user specified S3 location to which data will be
594
- # exported from a FHIR Data Store.
744
+ # @!attribute [rw] datastore_id
745
+ # This parameter limits the response to the import job with the
746
+ # specified Data Store ID.
747
+ # @return [String]
748
+ #
749
+ # @!attribute [rw] next_token
750
+ # A pagination token used to identify the next page of results to
751
+ # return for a ListFHIRImportJobs query.
752
+ # @return [String]
753
+ #
754
+ # @!attribute [rw] max_results
755
+ # This parameter limits the number of results returned for a
756
+ # ListFHIRImportJobs to a maximum quantity specified by the user.
757
+ # @return [Integer]
758
+ #
759
+ # @!attribute [rw] job_name
760
+ # This parameter limits the response to the import job with the
761
+ # specified job name.
762
+ # @return [String]
763
+ #
764
+ # @!attribute [rw] job_status
765
+ # This parameter limits the response to the import job with the
766
+ # specified job status.
767
+ # @return [String]
768
+ #
769
+ # @!attribute [rw] submitted_before
770
+ # This parameter limits the response to FHIR import jobs submitted
771
+ # before a user specified date.
772
+ # @return [Time]
773
+ #
774
+ # @!attribute [rw] submitted_after
775
+ # This parameter limits the response to FHIR import jobs submitted
776
+ # after a user specified date.
777
+ # @return [Time]
778
+ #
779
+ # @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/ListFHIRImportJobsRequest AWS API Documentation
780
+ #
781
+ class ListFHIRImportJobsRequest < Struct.new(
782
+ :datastore_id,
783
+ :next_token,
784
+ :max_results,
785
+ :job_name,
786
+ :job_status,
787
+ :submitted_before,
788
+ :submitted_after)
789
+ SENSITIVE = []
790
+ include Aws::Structure
791
+ end
792
+
793
+ # @!attribute [rw] import_job_properties_list
794
+ # The properties of a listed FHIR import jobs, including the ID, ARN,
795
+ # name, and the status of the job.
796
+ # @return [Array<Types::ImportJobProperties>]
797
+ #
798
+ # @!attribute [rw] next_token
799
+ # A pagination token used to identify the next page of results to
800
+ # return for a ListFHIRImportJobs query.
801
+ # @return [String]
802
+ #
803
+ # @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/ListFHIRImportJobsResponse AWS API Documentation
804
+ #
805
+ class ListFHIRImportJobsResponse < Struct.new(
806
+ :import_job_properties_list,
807
+ :next_token)
808
+ SENSITIVE = []
809
+ include Aws::Structure
810
+ end
811
+
812
+ # @note When making an API call, you may pass ListTagsForResourceRequest
813
+ # data as a hash:
814
+ #
815
+ # {
816
+ # resource_arn: "AmazonResourceName", # required
817
+ # }
818
+ #
819
+ # @!attribute [rw] resource_arn
820
+ # The Amazon Resource Name(ARN) of the Data Store for which tags are
821
+ # being added.
595
822
  # @return [String]
596
823
  #
824
+ # @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/ListTagsForResourceRequest AWS API Documentation
825
+ #
826
+ class ListTagsForResourceRequest < Struct.new(
827
+ :resource_arn)
828
+ SENSITIVE = []
829
+ include Aws::Structure
830
+ end
831
+
832
+ # @!attribute [rw] tags
833
+ # Returns a list of tags associated with a Data Store.
834
+ # @return [Array<Types::Tag>]
835
+ #
836
+ # @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/ListTagsForResourceResponse AWS API Documentation
837
+ #
838
+ class ListTagsForResourceResponse < Struct.new(
839
+ :tags)
840
+ SENSITIVE = []
841
+ include Aws::Structure
842
+ end
843
+
844
+ # The output data configuration that was supplied when the export job
845
+ # was created.
846
+ #
847
+ # @note OutputDataConfig is a union - when making an API calls you must set exactly one of the members.
848
+ #
849
+ # @note OutputDataConfig is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of OutputDataConfig corresponding to the set member.
850
+ #
851
+ # @!attribute [rw] s3_configuration
852
+ # The output data configuration that was supplied when the export job
853
+ # was created.
854
+ # @return [Types::S3Configuration]
855
+ #
597
856
  # @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/OutputDataConfig AWS API Documentation
598
857
  #
599
858
  class OutputDataConfig < Struct.new(
600
- :s3_uri)
859
+ :s3_configuration,
860
+ :unknown)
601
861
  SENSITIVE = []
602
862
  include Aws::Structure
863
+ include Aws::Structure::Union
864
+
865
+ class S3Configuration < OutputDataConfig; end
866
+ class Unknown < OutputDataConfig; end
603
867
  end
604
868
 
605
869
  # The input properties for the preloaded Data Store. Only data preloaded
@@ -638,13 +902,71 @@ module Aws::HealthLake
638
902
  include Aws::Structure
639
903
  end
640
904
 
905
+ # The configuration of the S3 bucket for either an import or export job.
906
+ # This includes assigning permissions for access.
907
+ #
908
+ # @note When making an API call, you may pass S3Configuration
909
+ # data as a hash:
910
+ #
911
+ # {
912
+ # s3_uri: "S3Uri", # required
913
+ # kms_key_id: "EncryptionKeyID", # required
914
+ # }
915
+ #
916
+ # @!attribute [rw] s3_uri
917
+ # The S3Uri is the user specified S3 location of the FHIR data to be
918
+ # imported into Amazon HealthLake.
919
+ # @return [String]
920
+ #
921
+ # @!attribute [rw] kms_key_id
922
+ # The KMS key ID used to access the S3 bucket.
923
+ # @return [String]
924
+ #
925
+ # @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/S3Configuration AWS API Documentation
926
+ #
927
+ class S3Configuration < Struct.new(
928
+ :s3_uri,
929
+ :kms_key_id)
930
+ SENSITIVE = []
931
+ include Aws::Structure
932
+ end
933
+
934
+ # The server-side encryption key configuration for a customer provided
935
+ # encryption key.
936
+ #
937
+ # @note When making an API call, you may pass SseConfiguration
938
+ # data as a hash:
939
+ #
940
+ # {
941
+ # kms_encryption_config: { # required
942
+ # cmk_type: "CUSTOMER_MANAGED_KMS_KEY", # required, accepts CUSTOMER_MANAGED_KMS_KEY, AWS_OWNED_KMS_KEY
943
+ # kms_key_id: "EncryptionKeyID",
944
+ # },
945
+ # }
946
+ #
947
+ # @!attribute [rw] kms_encryption_config
948
+ # The KMS encryption configuration used to provide details for data
949
+ # encryption.
950
+ # @return [Types::KmsEncryptionConfig]
951
+ #
952
+ # @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/SseConfiguration AWS API Documentation
953
+ #
954
+ class SseConfiguration < Struct.new(
955
+ :kms_encryption_config)
956
+ SENSITIVE = []
957
+ include Aws::Structure
958
+ end
959
+
641
960
  # @note When making an API call, you may pass StartFHIRExportJobRequest
642
961
  # data as a hash:
643
962
  #
644
963
  # {
645
964
  # job_name: "JobName",
646
965
  # output_data_config: { # required
647
- # s3_uri: "S3Uri",
966
+ # s3_configuration: {
967
+ # s3_uri: "S3Uri", # required
968
+ # kms_key_id: "EncryptionKeyID", # required
969
+ # },
648
970
  # },
649
971
  # datastore_id: "DatastoreId", # required
650
972
  # data_access_role_arn: "IamRoleArn", # required
@@ -720,6 +1042,12 @@ module Aws::HealthLake
720
1042
  # input_data_config: { # required
721
1043
  # s3_uri: "S3Uri",
722
1044
  # },
1045
+ # job_output_data_config: { # required
1046
+ # s3_configuration: {
1047
+ # s3_uri: "S3Uri", # required
1048
+ # kms_key_id: "EncryptionKeyID", # required
1049
+ # },
1050
+ # },
723
1051
  # datastore_id: "DatastoreId", # required
724
1052
  # data_access_role_arn: "IamRoleArn", # required
725
1053
  # client_token: "ClientTokenString", # required
@@ -734,6 +1062,11 @@ module Aws::HealthLake
734
1062
  # job request.
735
1063
  # @return [Types::InputDataConfig]
736
1064
  #
1065
+ # @!attribute [rw] job_output_data_config
1066
+ # The output data configuration that was supplied when the export job
1067
+ # was created.
1068
+ # @return [Types::OutputDataConfig]
1069
+ #
737
1070
  # @!attribute [rw] datastore_id
738
1071
  # The AWS-generated Data Store ID.
739
1072
  # @return [String]
@@ -755,6 +1088,7 @@ module Aws::HealthLake
755
1088
  class StartFHIRImportJobRequest < Struct.new(
756
1089
  :job_name,
757
1090
  :input_data_config,
1091
+ :job_output_data_config,
758
1092
  :datastore_id,
759
1093
  :data_access_role_arn,
760
1094
  :client_token)
@@ -784,6 +1118,70 @@ module Aws::HealthLake
784
1118
  include Aws::Structure
785
1119
  end
786
1120
 
1121
+ # A tag is a label consisting of a user-defined key and value. The form
1122
+ # for tags is \\\{"Key", "Value"\\}
1123
+ #
1124
+ # @note When making an API call, you may pass Tag
1125
+ # data as a hash:
1126
+ #
1127
+ # {
1128
+ # key: "TagKey", # required
1129
+ # value: "TagValue", # required
1130
+ # }
1131
+ #
1132
+ # @!attribute [rw] key
1133
+ # The key portion of a tag. Tag keys are case sensitive.
1134
+ # @return [String]
1135
+ #
1136
+ # @!attribute [rw] value
1137
+ # The value portion of tag. Tag values are case sensitive.
1138
+ # @return [String]
1139
+ #
1140
+ # @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/Tag AWS API Documentation
1141
+ #
1142
+ class Tag < Struct.new(
1143
+ :key,
1144
+ :value)
1145
+ SENSITIVE = []
1146
+ include Aws::Structure
1147
+ end
1148
+
1149
+ # @note When making an API call, you may pass TagResourceRequest
1150
+ # data as a hash:
1151
+ #
1152
+ # {
1153
+ # resource_arn: "AmazonResourceName", # required
1154
+ # tags: [ # required
1155
+ # {
1156
+ # key: "TagKey", # required
1157
+ # value: "TagValue", # required
1158
+ # },
1159
+ # ],
1160
+ # }
1161
+ #
1162
+ # @!attribute [rw] resource_arn
1163
+ # The Amazon Resource Name(ARN)that gives Amazon HealthLake access to
1164
+ # the Data Store which tags are being added to.
1165
+ # @return [String]
1166
+ #
1167
+ # @!attribute [rw] tags
1168
+ # The user specified key and value pair tags being added to a Data
1169
+ # Store.
1170
+ # @return [Array<Types::Tag>]
1171
+ #
1172
+ # @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/TagResourceRequest AWS API Documentation
1173
+ #
1174
+ class TagResourceRequest < Struct.new(
1175
+ :resource_arn,
1176
+ :tags)
1177
+ SENSITIVE = []
1178
+ include Aws::Structure
1179
+ end
1180
+
1181
+ # @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/TagResourceResponse AWS API Documentation
1182
+ #
1183
+ class TagResourceResponse < Aws::EmptyStructure; end
1184
+
787
1185
  # The user has exceeded their maximum number of allowed calls to the
788
1186
  # given API.
789
1187
  #
@@ -798,6 +1196,36 @@ module Aws::HealthLake
798
1196
  include Aws::Structure
799
1197
  end
800
1198
 
1199
+ # @note When making an API call, you may pass UntagResourceRequest
1200
+ # data as a hash:
1201
+ #
1202
+ # {
1203
+ # resource_arn: "AmazonResourceName", # required
1204
+ # tag_keys: ["TagKey"], # required
1205
+ # }
1206
+ #
1207
+ # @!attribute [rw] resource_arn
1208
+ # "The Amazon Resource Name(ARN) of the Data Store for which tags are
1209
+ # being removed
1210
+ # @return [String]
1211
+ #
1212
+ # @!attribute [rw] tag_keys
1213
+ # The keys for the tags to be removed from the Healthlake Data Store.
1214
+ # @return [Array<String>]
1215
+ #
1216
+ # @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/UntagResourceRequest AWS API Documentation
1217
+ #
1218
+ class UntagResourceRequest < Struct.new(
1219
+ :resource_arn,
1220
+ :tag_keys)
1221
+ SENSITIVE = []
1222
+ include Aws::Structure
1223
+ end
1224
+
1225
+ # @see http://docs.aws.amazon.com/goto/WebAPI/healthlake-2017-07-01/UntagResourceResponse AWS API Documentation
1226
+ #
1227
+ class UntagResourceResponse < Aws::EmptyStructure; end
1228
+
801
1229
  # The user input parameter was invalid.
802
1230
  #
803
1231
  # @!attribute [rw] message