Class: Aws::DataPipeline::Types::ValidationWarning

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-datapipeline/types.rb

Overview

Defines a validation warning. Validation warnings do not prevent pipeline activation. The set of validation warnings that can be returned are defined by AWS Data Pipeline.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#idString

The identifier of the object that contains the validation warning.

Returns:

  • (String)


1298
1299
1300
1301
1302
1303
# File 'lib/aws-sdk-datapipeline/types.rb', line 1298

class ValidationWarning < Struct.new(
  :id,
  :warnings)
  SENSITIVE = []
  include Aws::Structure
end

#warningsArray<String>

A description of the validation warning.

Returns:

  • (Array<String>)


1298
1299
1300
1301
1302
1303
# File 'lib/aws-sdk-datapipeline/types.rb', line 1298

class ValidationWarning < Struct.new(
  :id,
  :warnings)
  SENSITIVE = []
  include Aws::Structure
end