Class: Aws::SSMIncidents::Types::FindingDetails

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-ssmincidents/lib/aws-sdk-ssmincidents/types.rb

Overview

Note:

FindingDetails is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of FindingDetails corresponding to the set member.

Extended textual information about the finding.

Defined Under Namespace

Classes: CloudFormationStackUpdate, CodeDeployDeployment, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#cloud_formation_stack_updateTypes::CloudFormationStackUpdate

Information about the CloudFormation stack creation or update associated with the finding.



811
812
813
814
815
816
817
818
819
820
821
822
# File 'gems/aws-sdk-ssmincidents/lib/aws-sdk-ssmincidents/types.rb', line 811

class FindingDetails < Struct.new(
  :cloud_formation_stack_update,
  :code_deploy_deployment,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class CloudFormationStackUpdate < FindingDetails; end
  class CodeDeployDeployment < FindingDetails; end
  class Unknown < FindingDetails; end
end

#code_deploy_deploymentTypes::CodeDeployDeployment

Information about the CodeDeploy deployment associated with the finding.



811
812
813
814
815
816
817
818
819
820
821
822
# File 'gems/aws-sdk-ssmincidents/lib/aws-sdk-ssmincidents/types.rb', line 811

class FindingDetails < Struct.new(
  :cloud_formation_stack_update,
  :code_deploy_deployment,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class CloudFormationStackUpdate < FindingDetails; end
  class CodeDeployDeployment < FindingDetails; end
  class Unknown < FindingDetails; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



811
812
813
# File 'gems/aws-sdk-ssmincidents/lib/aws-sdk-ssmincidents/types.rb', line 811

def unknown
  @unknown
end