
com.azure.resourcemanager.datafactory.models.AmazonS3LinkedService Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.datafactory.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.util.logging.ClientLogger;
import com.azure.json.JsonReader;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import com.azure.resourcemanager.datafactory.fluent.models.AmazonS3LinkedServiceTypeProperties;
import java.io.IOException;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
/**
* Linked service for Amazon S3.
*/
@Fluent
public final class AmazonS3LinkedService extends LinkedService {
/*
* Type of linked service.
*/
private String type = "AmazonS3";
/*
* Amazon S3 linked service properties.
*/
private AmazonS3LinkedServiceTypeProperties innerTypeProperties = new AmazonS3LinkedServiceTypeProperties();
/**
* Creates an instance of AmazonS3LinkedService class.
*/
public AmazonS3LinkedService() {
}
/**
* Get the type property: Type of linked service.
*
* @return the type value.
*/
@Override
public String type() {
return this.type;
}
/**
* Get the innerTypeProperties property: Amazon S3 linked service properties.
*
* @return the innerTypeProperties value.
*/
private AmazonS3LinkedServiceTypeProperties innerTypeProperties() {
return this.innerTypeProperties;
}
/**
* {@inheritDoc}
*/
@Override
public AmazonS3LinkedService withVersion(String version) {
super.withVersion(version);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public AmazonS3LinkedService withConnectVia(IntegrationRuntimeReference connectVia) {
super.withConnectVia(connectVia);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public AmazonS3LinkedService withDescription(String description) {
super.withDescription(description);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public AmazonS3LinkedService withParameters(Map parameters) {
super.withParameters(parameters);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public AmazonS3LinkedService withAnnotations(List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy