io.github.hsiehshujeng.cdk.databrew.cicd.CodePipelineIamRole Maven / Gradle / Ivy
Show all versions of cdk-databrew-cicd Show documentation
package io.github.hsiehshujeng.cdk.databrew.cicd;
/**
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.105.0 (build 0a2adcb)", date = "2024-11-18T01:03:07.195Z")
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@software.amazon.jsii.Jsii(module = io.github.hsiehshujeng.cdk.databrew.cicd.$Module.class, fqn = "cdk-databrew-cicd.CodePipelineIamRole")
public class CodePipelineIamRole extends software.constructs.Construct {
protected CodePipelineIamRole(final software.amazon.jsii.JsiiObjectRef objRef) {
super(objRef);
}
protected CodePipelineIamRole(final software.amazon.jsii.JsiiObject.InitializationMode initializationMode) {
super(initializationMode);
}
/**
* @param scope This parameter is required.
* @param name This parameter is required.
* @param props This parameter is required.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public CodePipelineIamRole(final @org.jetbrains.annotations.NotNull software.constructs.Construct scope, final @org.jetbrains.annotations.NotNull java.lang.String name, final @org.jetbrains.annotations.NotNull io.github.hsiehshujeng.cdk.databrew.cicd.CodePipelineIamRoleProps props) {
super(software.amazon.jsii.JsiiObject.InitializationMode.JSII);
software.amazon.jsii.JsiiEngine.getInstance().createNewObject(this, new Object[] { java.util.Objects.requireNonNull(scope, "scope is required"), java.util.Objects.requireNonNull(name, "name is required"), java.util.Objects.requireNonNull(props, "props is required") });
}
/**
* The representative of the IAM role for the CodePipeline CICD pipeline.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public @org.jetbrains.annotations.NotNull software.amazon.awscdk.services.iam.Role getRole() {
return software.amazon.jsii.Kernel.get(this, "role", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.iam.Role.class));
}
/**
* The ARN of the IAM role for the CodePipeline CICD pipeline.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public @org.jetbrains.annotations.NotNull java.lang.String getRoleArn() {
return software.amazon.jsii.Kernel.get(this, "roleArn", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
}
/**
* A fluent builder for {@link io.github.hsiehshujeng.cdk.databrew.cicd.CodePipelineIamRole}.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public static final class Builder implements software.amazon.jsii.Builder {
/**
* @return a new instance of {@link Builder}.
* @param scope This parameter is required.
* @param name This parameter is required.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public static Builder create(final software.constructs.Construct scope, final java.lang.String name) {
return new Builder(scope, name);
}
private final software.constructs.Construct scope;
private final java.lang.String name;
private final io.github.hsiehshujeng.cdk.databrew.cicd.CodePipelineIamRoleProps.Builder props;
private Builder(final software.constructs.Construct scope, final java.lang.String name) {
this.scope = scope;
this.name = name;
this.props = new io.github.hsiehshujeng.cdk.databrew.cicd.CodePipelineIamRoleProps.Builder();
}
/**
* The ARN of the S3 bucket where you store your artifacts.
*
* @return {@code this}
* @param bucketArn The ARN of the S3 bucket where you store your artifacts. This parameter is required.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder bucketArn(final java.lang.String bucketArn) {
this.props.bucketArn(bucketArn);
return this;
}
/**
* The ARN of the Lambda function for the pre-production account.
*
* @return {@code this}
* @param preproductionLambdaArn The ARN of the Lambda function for the pre-production account. This parameter is required.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder preproductionLambdaArn(final java.lang.String preproductionLambdaArn) {
this.props.preproductionLambdaArn(preproductionLambdaArn);
return this;
}
/**
* The ARN of the Lambda function for the production account.
*
* @return {@code this}
* @param productionLambdaArn The ARN of the Lambda function for the production account. This parameter is required.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder productionLambdaArn(final java.lang.String productionLambdaArn) {
this.props.productionLambdaArn(productionLambdaArn);
return this;
}
/**
* The role name for the CodePipeline CICD pipeline.
*
* Default: 'DataBrew-Recipe-Pipeline-Role'
*
* @return {@code this}
* @param roleName The role name for the CodePipeline CICD pipeline. This parameter is required.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder roleName(final java.lang.String roleName) {
this.props.roleName(roleName);
return this;
}
/**
* @return a newly built instance of {@link io.github.hsiehshujeng.cdk.databrew.cicd.CodePipelineIamRole}.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@Override
public io.github.hsiehshujeng.cdk.databrew.cicd.CodePipelineIamRole build() {
return new io.github.hsiehshujeng.cdk.databrew.cicd.CodePipelineIamRole(
this.scope,
this.name,
this.props.build()
);
}
}
}