Method: Aws::CloudFormation::Types::StackEvent#resource_type

Defined in:
lib/aws-sdk-cloudformation/types.rb

#resource_typeString

Type of resource. For more information, see [Amazon Web Services resource and property types reference] in the *CloudFormation User Guide*.

[1]: docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html

Returns:

  • (String)


9033
9034
9035
9036
9037
9038
9039
9040
9041
9042
9043
9044
9045
9046
9047
9048
9049
9050
9051
9052
9053
9054
9055
# File 'lib/aws-sdk-cloudformation/types.rb', line 9033

class StackEvent < Struct.new(
  :stack_id,
  :event_id,
  :stack_name,
  :operation_id,
  :logical_resource_id,
  :physical_resource_id,
  :resource_type,
  :timestamp,
  :resource_status,
  :resource_status_reason,
  :resource_properties,
  :client_request_token,
  :hook_type,
  :hook_status,
  :hook_status_reason,
  :hook_invocation_point,
  :hook_invocation_id,
  :hook_failure_mode,
  :detailed_status)
  SENSITIVE = []
  include Aws::Structure
end