# File lib/fog/aws/requests/storage/get_bucket_lifecycle.rb, line 25
        def get_bucket_lifecycle(bucket_name)
          request({
                    :expects  => 200,
                    :headers  => {},
                    :host     => "#{bucket_name}.#{@host}",
                    :idempotent => true,
                    :method   => 'GET',
                    :parser   => Fog::Parsers::Storage::AWS::GetBucketLifecycle.new,
                    :query    => {'lifecycle' => nil}
                  })
        end