com.pulumi.aws.kinesisanalyticsv2.outputs.ApplicationApplicationConfigurationEnvironmentPropertiesPropertyGroup 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.kinesisanalyticsv2.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
@CustomType
public final class ApplicationApplicationConfigurationEnvironmentPropertiesPropertyGroup {
/**
* @return The key of the application execution property key-value map.
*
*/
private String propertyGroupId;
/**
* @return Application execution property key-value map.
*
*/
private Map propertyMap;
private ApplicationApplicationConfigurationEnvironmentPropertiesPropertyGroup() {}
/**
* @return The key of the application execution property key-value map.
*
*/
public String propertyGroupId() {
return this.propertyGroupId;
}
/**
* @return Application execution property key-value map.
*
*/
public Map propertyMap() {
return this.propertyMap;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ApplicationApplicationConfigurationEnvironmentPropertiesPropertyGroup defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String propertyGroupId;
private Map propertyMap;
public Builder() {}
public Builder(ApplicationApplicationConfigurationEnvironmentPropertiesPropertyGroup defaults) {
Objects.requireNonNull(defaults);
this.propertyGroupId = defaults.propertyGroupId;
this.propertyMap = defaults.propertyMap;
}
@CustomType.Setter
public Builder propertyGroupId(String propertyGroupId) {
if (propertyGroupId == null) {
throw new MissingRequiredPropertyException("ApplicationApplicationConfigurationEnvironmentPropertiesPropertyGroup", "propertyGroupId");
}
this.propertyGroupId = propertyGroupId;
return this;
}
@CustomType.Setter
public Builder propertyMap(Map propertyMap) {
if (propertyMap == null) {
throw new MissingRequiredPropertyException("ApplicationApplicationConfigurationEnvironmentPropertiesPropertyGroup", "propertyMap");
}
this.propertyMap = propertyMap;
return this;
}
public ApplicationApplicationConfigurationEnvironmentPropertiesPropertyGroup build() {
final var _resultValue = new ApplicationApplicationConfigurationEnvironmentPropertiesPropertyGroup();
_resultValue.propertyGroupId = propertyGroupId;
_resultValue.propertyMap = propertyMap;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy