aws-xray-recorder-sdk-aws-sdk-core/src/main/java/com/amazonaws/xray/handlers/config/AWSOperationHandlerRequestDescriptor.java [21:68]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @JsonProperty
    private String renameTo;

    @JsonProperty
    private boolean map = false;

    @JsonProperty
    private boolean list = false;

    @JsonProperty
    private boolean getKeys = false;

    @JsonProperty
    private boolean getCount = false;

    /**
     * @return the renameTo
     */
    public String getRenameTo() {
        return renameTo;
    }

    /**
     * @return the map
     */
    public boolean isMap() {
        return map;
    }

    /**
     * @return the list
     */
    public boolean isList() {
        return list;
    }

    /**
     * @return the getCount
     */
    public boolean shouldGetCount() {
        return getCount;
    }

    /**
     * @return the getKeys
     */
    public boolean shouldGetKeys() {
        return getKeys;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



aws-xray-recorder-sdk-aws-sdk-core/src/main/java/com/amazonaws/xray/handlers/config/AWSOperationHandlerResponseDescriptor.java [21:68]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @JsonProperty
    private String renameTo;

    @JsonProperty
    private boolean map = false;

    @JsonProperty
    private boolean list = false;

    @JsonProperty
    private boolean getKeys = false;

    @JsonProperty
    private boolean getCount = false;

    /**
     * @return the renameTo
     */
    public String getRenameTo() {
        return renameTo;
    }

    /**
     * @return the map
     */
    public boolean isMap() {
        return map;
    }

    /**
     * @return the list
     */
    public boolean isList() {
        return list;
    }

    /**
     * @return the getCount
     */
    public boolean shouldGetCount() {
        return getCount;
    }

    /**
     * @return the getKeys
     */
    public boolean shouldGetKeys() {
        return getKeys;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



