Class: Aws::SMS::Types::UserData
- Inherits:
-
Struct
- Object
- Struct
- Aws::SMS::Types::UserData
- Defined in:
- gems/aws-sdk-sms/lib/aws-sdk-sms/types.rb
Overview
Note:
When making an API call, you may pass UserData data as a hash:
{
s3_location: {
bucket: "S3BucketName",
key: "S3KeyName",
},
}
A script that runs on first launch of an Amazon EC2 instance. Used for configuring the server during launch.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3_location ⇒ Types::S3Location
Amazon S3 location of the user-data script.
Instance Attribute Details
#s3_location ⇒ Types::S3Location
Amazon S3 location of the user-data script.
2991 2992 2993 2994 2995 |
# File 'gems/aws-sdk-sms/lib/aws-sdk-sms/types.rb', line 2991 class UserData < Struct.new( :s3_location) SENSITIVE = [] include Aws::Structure end |