
com.pulumi.azurenative.awsconnector.outputs.AccessLogSettingResponse 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.awsconnector.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class AccessLogSettingResponse {
/**
* @return The Amazon Resource Name (ARN) of the CloudWatch Logs log group or Kinesis Data Firehose delivery stream to receive access logs. If you specify a Kinesis Data Firehose delivery stream, the stream name must begin with ``amazon-apigateway-``. This parameter is required to enable access logging.
*
*/
private @Nullable String destinationArn;
/**
* @return A single line format of the access logs of data, as specified by selected [$context variables](https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-mapping-template-reference.html#context-variable-reference). The format must include at least ``$context.requestId``. This parameter is required to enable access logging.
*
*/
private @Nullable String format;
private AccessLogSettingResponse() {}
/**
* @return The Amazon Resource Name (ARN) of the CloudWatch Logs log group or Kinesis Data Firehose delivery stream to receive access logs. If you specify a Kinesis Data Firehose delivery stream, the stream name must begin with ``amazon-apigateway-``. This parameter is required to enable access logging.
*
*/
public Optional destinationArn() {
return Optional.ofNullable(this.destinationArn);
}
/**
* @return A single line format of the access logs of data, as specified by selected [$context variables](https://docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-mapping-template-reference.html#context-variable-reference). The format must include at least ``$context.requestId``. This parameter is required to enable access logging.
*
*/
public Optional format() {
return Optional.ofNullable(this.format);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(AccessLogSettingResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String destinationArn;
private @Nullable String format;
public Builder() {}
public Builder(AccessLogSettingResponse defaults) {
Objects.requireNonNull(defaults);
this.destinationArn = defaults.destinationArn;
this.format = defaults.format;
}
@CustomType.Setter
public Builder destinationArn(@Nullable String destinationArn) {
this.destinationArn = destinationArn;
return this;
}
@CustomType.Setter
public Builder format(@Nullable String format) {
this.format = format;
return this;
}
public AccessLogSettingResponse build() {
final var _resultValue = new AccessLogSettingResponse();
_resultValue.destinationArn = destinationArn;
_resultValue.format = format;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy