aws-sdk-cloudformation 1.41.0 → 1.131.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.
@@ -0,0 +1,62 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module CloudFormation
10
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/StackResourceSummary.html
11
+ class StackResourceSummary
12
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/StackResourceSummary.html#initialize-instance_method
13
+ def initialize: (String stack_name, String logical_id, Hash[Symbol, untyped] options) -> void
14
+ | (stack_name: String, logical_id: String, ?client: Client) -> void
15
+ | (Hash[Symbol, untyped] args) -> void
16
+
17
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/StackResourceSummary.html#stack_name-instance_method
18
+ def stack_name: () -> String
19
+
20
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/StackResourceSummary.html#logical_id-instance_method
21
+ def logical_id: () -> String
22
+ alias logical_resource_id logical_id
23
+
24
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/StackResourceSummary.html#physical_resource_id-instance_method
25
+ def physical_resource_id: () -> ::String
26
+
27
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/StackResourceSummary.html#resource_type-instance_method
28
+ def resource_type: () -> ::String
29
+
30
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/StackResourceSummary.html#last_updated_timestamp-instance_method
31
+ def last_updated_timestamp: () -> ::Time
32
+
33
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/StackResourceSummary.html#resource_status-instance_method
34
+ def resource_status: () -> ("CREATE_IN_PROGRESS" | "CREATE_FAILED" | "CREATE_COMPLETE" | "DELETE_IN_PROGRESS" | "DELETE_FAILED" | "DELETE_COMPLETE" | "DELETE_SKIPPED" | "UPDATE_IN_PROGRESS" | "UPDATE_FAILED" | "UPDATE_COMPLETE" | "IMPORT_FAILED" | "IMPORT_COMPLETE" | "IMPORT_IN_PROGRESS" | "IMPORT_ROLLBACK_IN_PROGRESS" | "IMPORT_ROLLBACK_FAILED" | "IMPORT_ROLLBACK_COMPLETE" | "EXPORT_FAILED" | "EXPORT_COMPLETE" | "EXPORT_IN_PROGRESS" | "EXPORT_ROLLBACK_IN_PROGRESS" | "EXPORT_ROLLBACK_FAILED" | "EXPORT_ROLLBACK_COMPLETE" | "UPDATE_ROLLBACK_IN_PROGRESS" | "UPDATE_ROLLBACK_COMPLETE" | "UPDATE_ROLLBACK_FAILED" | "ROLLBACK_IN_PROGRESS" | "ROLLBACK_COMPLETE" | "ROLLBACK_FAILED")
35
+
36
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/StackResourceSummary.html#resource_status_reason-instance_method
37
+ def resource_status_reason: () -> ::String
38
+
39
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/StackResourceSummary.html#drift_information-instance_method
40
+ def drift_information: () -> Types::StackResourceDriftInformationSummary
41
+
42
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/StackResourceSummary.html#module_info-instance_method
43
+ def module_info: () -> Types::ModuleInfo
44
+
45
+ def client: () -> Client
46
+
47
+
48
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/StackResourceSummary.html#data-instance_method
49
+ def data: () -> Types::StackResourceSummary
50
+
51
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/StackResourceSummary.html#data_loaded?-instance_method
52
+ def data_loaded?: () -> bool
53
+
54
+
55
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CloudFormation/StackResourceSummary.html#resource-instance_method
56
+ def resource: () -> StackResource
57
+
58
+ class Collection < ::Aws::Resources::Collection[StackResourceSummary]
59
+ end
60
+ end
61
+ end
62
+ end