sig/client.rbs in aws-sdk-cloudformation-1.123.0 vs sig/client.rbs in aws-sdk-cloudformation-1.124.0
- old
+ new
@@ -927,9 +927,24 @@
?next_token: ::String,
?max_results: ::Integer
) -> _ListGeneratedTemplatesResponseSuccess
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListGeneratedTemplatesResponseSuccess
+ interface _ListHookResultsResponseSuccess
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListHookResultsOutput]
+ def target_type: () -> ("CHANGE_SET" | "STACK" | "RESOURCE" | "CLOUD_CONTROL")
+ def target_id: () -> ::String
+ def hook_results: () -> ::Array[Types::HookResultSummary]
+ def next_token: () -> ::String
+ end
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/Client.html#list_hook_results-instance_method
+ def list_hook_results: (
+ target_type: ("CHANGE_SET" | "STACK" | "RESOURCE" | "CLOUD_CONTROL"),
+ target_id: ::String,
+ ?next_token: ::String
+ ) -> _ListHookResultsResponseSuccess
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListHookResultsResponseSuccess
+
interface _ListImportsResponseSuccess
include ::Seahorse::Client::_ResponseSuccess[Types::ListImportsOutput]
def imports: () -> ::Array[::String]
def next_token: () -> ::String
end