
com.pulumi.azurenative.purview.outputs.CloudConnectorsResponse Maven / Gradle / Ivy
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azurenative.purview.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class CloudConnectorsResponse {
/**
* @return AWS external identifier.
* Configured in AWS to allow use of the role arn used for scanning
*
*/
private String awsExternalId;
private CloudConnectorsResponse() {}
/**
* @return AWS external identifier.
* Configured in AWS to allow use of the role arn used for scanning
*
*/
public String awsExternalId() {
return this.awsExternalId;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(CloudConnectorsResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String awsExternalId;
public Builder() {}
public Builder(CloudConnectorsResponse defaults) {
Objects.requireNonNull(defaults);
this.awsExternalId = defaults.awsExternalId;
}
@CustomType.Setter
public Builder awsExternalId(String awsExternalId) {
if (awsExternalId == null) {
throw new MissingRequiredPropertyException("CloudConnectorsResponse", "awsExternalId");
}
this.awsExternalId = awsExternalId;
return this;
}
public CloudConnectorsResponse build() {
final var _resultValue = new CloudConnectorsResponse();
_resultValue.awsExternalId = awsExternalId;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy