All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.hsiehshujeng.cdk.databrew.cicd.InfraIamRole Maven / Gradle / Ivy

The newest version!
package io.github.hsiehshujeng.cdk.databrew.cicd;

/**
 */
@javax.annotation.Generated(value = "jsii-pacmak/1.105.0 (build 0a2adcb)", date = "2024-11-18T01:03:07.207Z")
@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.InfraIamRole")
public class InfraIamRole extends software.constructs.Construct {

    protected InfraIamRole(final software.amazon.jsii.JsiiObjectRef objRef) {
        super(objRef);
    }

    protected InfraIamRole(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 InfraIamRole(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.InfraIamRoleProps 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 ARN of the IAM role for the infrastructure account.
     */
    @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.InfraIamRole}.
     */
    @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.InfraIamRoleProps.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.InfraIamRoleProps.Builder();
        }

        /**
         * The role name for the infrastructure account.
         * 

* Default: 'CrossAccountRepositoryContributorRole' *

* @return {@code this} * @param roleName The role name for the infrastructure account. 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.InfraIamRole}. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) @Override public io.github.hsiehshujeng.cdk.databrew.cicd.InfraIamRole build() { return new io.github.hsiehshujeng.cdk.databrew.cicd.InfraIamRole( this.scope, this.name, this.props.build() ); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy