Class: Aws::SSM::Types::InstanceAssociationOutputLocation
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSM::Types::InstanceAssociationOutputLocation
- Defined in:
- gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb
Overview
Note:
When making an API call, you may pass InstanceAssociationOutputLocation data as a hash:
{
s3_location: {
output_s3_region: "S3Region",
output_s3_bucket_name: "S3BucketName",
output_s3_key_prefix: "S3KeyPrefix",
},
}
An S3 bucket where you want to store the results of this request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3_location ⇒ Types::S3OutputLocation
An S3 bucket where you want to store the results of this request.
Instance Attribute Details
#s3_location ⇒ Types::S3OutputLocation
An S3 bucket where you want to store the results of this request.
9400 9401 9402 9403 9404 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 9400 class InstanceAssociationOutputLocation < Struct.new( :s3_location) SENSITIVE = [] include Aws::Structure end |