com.pulumi.aws.codebuild.ResourcePolicyArgs 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.
The newest version!
// *** 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.codebuild;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class ResourcePolicyArgs extends com.pulumi.resources.ResourceArgs {
public static final ResourcePolicyArgs Empty = new ResourcePolicyArgs();
/**
* A JSON-formatted resource policy. For more information, see [Sharing a Projec](https://docs.aws.amazon.com/codebuild/latest/userguide/project-sharing.html#project-sharing-share) and [Sharing a Report Group](https://docs.aws.amazon.com/codebuild/latest/userguide/report-groups-sharing.html#report-groups-sharing-share).
*
*/
@Import(name="policy", required=true)
private Output policy;
/**
* @return A JSON-formatted resource policy. For more information, see [Sharing a Projec](https://docs.aws.amazon.com/codebuild/latest/userguide/project-sharing.html#project-sharing-share) and [Sharing a Report Group](https://docs.aws.amazon.com/codebuild/latest/userguide/report-groups-sharing.html#report-groups-sharing-share).
*
*/
public Output policy() {
return this.policy;
}
/**
* The ARN of the Project or ReportGroup resource you want to associate with a resource policy.
*
*/
@Import(name="resourceArn", required=true)
private Output resourceArn;
/**
* @return The ARN of the Project or ReportGroup resource you want to associate with a resource policy.
*
*/
public Output resourceArn() {
return this.resourceArn;
}
private ResourcePolicyArgs() {}
private ResourcePolicyArgs(ResourcePolicyArgs $) {
this.policy = $.policy;
this.resourceArn = $.resourceArn;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ResourcePolicyArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private ResourcePolicyArgs $;
public Builder() {
$ = new ResourcePolicyArgs();
}
public Builder(ResourcePolicyArgs defaults) {
$ = new ResourcePolicyArgs(Objects.requireNonNull(defaults));
}
/**
* @param policy A JSON-formatted resource policy. For more information, see [Sharing a Projec](https://docs.aws.amazon.com/codebuild/latest/userguide/project-sharing.html#project-sharing-share) and [Sharing a Report Group](https://docs.aws.amazon.com/codebuild/latest/userguide/report-groups-sharing.html#report-groups-sharing-share).
*
* @return builder
*
*/
public Builder policy(Output policy) {
$.policy = policy;
return this;
}
/**
* @param policy A JSON-formatted resource policy. For more information, see [Sharing a Projec](https://docs.aws.amazon.com/codebuild/latest/userguide/project-sharing.html#project-sharing-share) and [Sharing a Report Group](https://docs.aws.amazon.com/codebuild/latest/userguide/report-groups-sharing.html#report-groups-sharing-share).
*
* @return builder
*
*/
public Builder policy(String policy) {
return policy(Output.of(policy));
}
/**
* @param resourceArn The ARN of the Project or ReportGroup resource you want to associate with a resource policy.
*
* @return builder
*
*/
public Builder resourceArn(Output resourceArn) {
$.resourceArn = resourceArn;
return this;
}
/**
* @param resourceArn The ARN of the Project or ReportGroup resource you want to associate with a resource policy.
*
* @return builder
*
*/
public Builder resourceArn(String resourceArn) {
return resourceArn(Output.of(resourceArn));
}
public ResourcePolicyArgs build() {
if ($.policy == null) {
throw new MissingRequiredPropertyException("ResourcePolicyArgs", "policy");
}
if ($.resourceArn == null) {
throw new MissingRequiredPropertyException("ResourcePolicyArgs", "resourceArn");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy