All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.spotinst.sdkjava.model.bl.mrScaler.aws.BlMrScalerAwsFileParams Maven / Gradle / Ivy

There is a newer version: 1.0.121
Show newest version
package com.spotinst.sdkjava.model.bl.mrScaler.aws;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;

@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
public class BlMrScalerAwsFileParams {
    //region Members
    private String bucket;
    private String key;

    // endregion

    //region Constructor
    public BlMrScalerAwsFileParams() {
    }
    // endregion

    // region methods
    // region bucket
    public String getBucket() {
        return bucket;
    }

    public void setBucket(String bucket) {
        this.bucket = bucket;
    }
    // endregion

    // region key
    public String getKey() {
        return key;
    }

    public void setKey(String key) {
        this.key = key;
    }
    // endregion
    // endregion
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy