com.pulumi.aws.bedrockmodel.outputs.InvocationLoggingConfigurationLoggingConfigCloudwatchConfigLargeDataDeliveryS3Config Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws Show documentation
Show all versions of aws Show documentation
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
// *** 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.aws.bedrockmodel.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 InvocationLoggingConfigurationLoggingConfigCloudwatchConfigLargeDataDeliveryS3Config {
/**
* @return S3 bucket name.
*
*/
private @Nullable String bucketName;
/**
* @return S3 prefix.
*
*/
private @Nullable String keyPrefix;
private InvocationLoggingConfigurationLoggingConfigCloudwatchConfigLargeDataDeliveryS3Config() {}
/**
* @return S3 bucket name.
*
*/
public Optional bucketName() {
return Optional.ofNullable(this.bucketName);
}
/**
* @return S3 prefix.
*
*/
public Optional keyPrefix() {
return Optional.ofNullable(this.keyPrefix);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(InvocationLoggingConfigurationLoggingConfigCloudwatchConfigLargeDataDeliveryS3Config defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String bucketName;
private @Nullable String keyPrefix;
public Builder() {}
public Builder(InvocationLoggingConfigurationLoggingConfigCloudwatchConfigLargeDataDeliveryS3Config defaults) {
Objects.requireNonNull(defaults);
this.bucketName = defaults.bucketName;
this.keyPrefix = defaults.keyPrefix;
}
@CustomType.Setter
public Builder bucketName(@Nullable String bucketName) {
this.bucketName = bucketName;
return this;
}
@CustomType.Setter
public Builder keyPrefix(@Nullable String keyPrefix) {
this.keyPrefix = keyPrefix;
return this;
}
public InvocationLoggingConfigurationLoggingConfigCloudwatchConfigLargeDataDeliveryS3Config build() {
final var _resultValue = new InvocationLoggingConfigurationLoggingConfigCloudwatchConfigLargeDataDeliveryS3Config();
_resultValue.bucketName = bucketName;
_resultValue.keyPrefix = keyPrefix;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy