Class: Aws::SSMIncidents::Types::FindingDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSMIncidents::Types::FindingDetails
- Includes:
- Aws::Structure, Aws::Structure::Union
- Defined in:
- 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.
Direct Known Subclasses
Defined Under Namespace
Classes: CloudFormationStackUpdate, CodeDeployDeployment, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cloud_formation_stack_update ⇒ Types::CloudFormationStackUpdate
Information about the CloudFormation stack creation or update associated with the finding.
-
#code_deploy_deployment ⇒ Types::CodeDeployDeployment
Information about the CodeDeploy deployment associated with the finding.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#cloud_formation_stack_update ⇒ Types::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 '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_deployment ⇒ Types::CodeDeployDeployment
Information about the CodeDeploy deployment associated with the finding.
811 812 813 814 815 816 817 818 819 820 821 822 |
# File '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 |
#unknown ⇒ Object
Returns the value of attribute unknown
811 812 813 |
# File 'lib/aws-sdk-ssmincidents/types.rb', line 811 def unknown @unknown end |