Class: Aws::SMS::Types::UserDataValidationParameters
- Inherits:
-
Struct
- Object
- Struct
- Aws::SMS::Types::UserDataValidationParameters
- Defined in:
- gems/aws-sdk-sms/lib/aws-sdk-sms/types.rb
Overview
Note:
When making an API call, you may pass UserDataValidationParameters data as a hash:
{
source: {
s3_location: {
bucket: "S3BucketName",
key: "S3KeyName",
},
},
script_type: "SHELL_SCRIPT", # accepts SHELL_SCRIPT, POWERSHELL_SCRIPT
}
Contains validation parameters.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#script_type ⇒ String
The type of validation script.
-
#source ⇒ Types::Source
The location of the validation script.
Instance Attribute Details
#script_type ⇒ String
The type of validation script.
3022 3023 3024 3025 3026 3027 |
# File 'gems/aws-sdk-sms/lib/aws-sdk-sms/types.rb', line 3022 class UserDataValidationParameters < Struct.new( :source, :script_type) SENSITIVE = [] include Aws::Structure end |
#source ⇒ Types::Source
The location of the validation script.
3022 3023 3024 3025 3026 3027 |
# File 'gems/aws-sdk-sms/lib/aws-sdk-sms/types.rb', line 3022 class UserDataValidationParameters < Struct.new( :source, :script_type) SENSITIVE = [] include Aws::Structure end |