Class LazyRoleProps.Builder

java.lang.Object
software.amazon.awscdk.services.iam.LazyRoleProps.Builder
All Implemented Interfaces:
software.amazon.jsii.Builder<LazyRoleProps>
Enclosing interface:
LazyRoleProps

@Stability(Stable) public static final class LazyRoleProps.Builder extends Object implements software.amazon.jsii.Builder<LazyRoleProps>
A builder for LazyRoleProps
  • Constructor Details

    • Builder

      public Builder()
  • Method Details

    • assumedBy

      @Stability(Stable) public LazyRoleProps.Builder assumedBy(IPrincipal assumedBy)
      Sets the value of RoleProps.getAssumedBy()
      Parameters:
      assumedBy - The IAM principal (i.e. new ServicePrincipal('sns.amazonaws.com')) which can assume this role. This parameter is required. You can later modify the assume role policy document by accessing it via the assumeRolePolicy property.
      Returns:
      this
    • description

      @Stability(Stable) public LazyRoleProps.Builder description(String description)
      Sets the value of RoleProps.getDescription()
      Parameters:
      description - A description of the role. It can be up to 1000 characters long.
      Returns:
      this
    • externalId

      @Stability(Deprecated) @Deprecated public LazyRoleProps.Builder externalId(String externalId)
      Deprecated.
      see externalIds
      Sets the value of RoleProps.getExternalId()
      Parameters:
      externalId - ID that the role assumer needs to provide when assuming this role. If the configured and provided external IDs do not match, the AssumeRole operation will fail.
      Returns:
      this
    • externalIds

      @Stability(Stable) public LazyRoleProps.Builder externalIds(List<String> externalIds)
      Sets the value of RoleProps.getExternalIds()
      Parameters:
      externalIds - List of IDs that the role assumer needs to provide one of when assuming this role. If the configured and provided external IDs do not match, the AssumeRole operation will fail.
      Returns:
      this
    • inlinePolicies

      @Stability(Stable) public LazyRoleProps.Builder inlinePolicies(Map<String,? extends PolicyDocument> inlinePolicies)
      Parameters:
      inlinePolicies - A list of named policies to inline into this role. These policies will be created with the role, whereas those added by addToPolicy are added using a separate CloudFormation resource (allowing a way around circular dependencies that could otherwise be introduced).
      Returns:
      this
    • managedPolicies

      @Stability(Stable) public LazyRoleProps.Builder managedPolicies(List<? extends IManagedPolicy> managedPolicies)
      Parameters:
      managedPolicies - A list of managed policies associated with this role. You can add managed policies later using addManagedPolicy(ManagedPolicy.fromAwsManagedPolicyName(policyName)).
      Returns:
      this
    • maxSessionDuration

      @Stability(Stable) public LazyRoleProps.Builder maxSessionDuration(Duration maxSessionDuration)
      Parameters:
      maxSessionDuration - The maximum session duration that you want to set for the specified role. This setting can have a value from 1 hour (3600sec) to 12 (43200sec) hours.

      Anyone who assumes the role from the AWS CLI or API can use the DurationSeconds API parameter or the duration-seconds CLI parameter to request a longer session. The MaxSessionDuration setting determines the maximum duration that can be requested using the DurationSeconds parameter.

      If users don't specify a value for the DurationSeconds parameter, their security credentials are valid for one hour by default. This applies when you use the AssumeRole* API operations or the assume-role* CLI operations but does not apply when you use those operations to create a console URL.

      Returns:
      this
    • path

      @Stability(Stable) public LazyRoleProps.Builder path(String path)
      Sets the value of RoleProps.getPath()
      Parameters:
      path - The path associated with this role. For information about IAM paths, see Friendly Names and Paths in IAM User Guide.
      Returns:
      this
    • permissionsBoundary

      @Stability(Stable) public LazyRoleProps.Builder permissionsBoundary(IManagedPolicy permissionsBoundary)
      Parameters:
      permissionsBoundary - AWS supports permissions boundaries for IAM entities (users or roles). A permissions boundary is an advanced feature for using a managed policy to set the maximum permissions that an identity-based policy can grant to an IAM entity. An entity's permissions boundary allows it to perform only the actions that are allowed by both its identity-based policies and its permissions boundaries.
      Returns:
      this
    • roleName

      @Stability(Stable) public LazyRoleProps.Builder roleName(String roleName)
      Sets the value of RoleProps.getRoleName()
      Parameters:
      roleName - A name for the IAM role. For valid values, see the RoleName parameter for the CreateRole action in the IAM API Reference.

      IMPORTANT: If you specify a name, you cannot perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you must replace the resource, specify a new name.

      If you specify a name, you must specify the CAPABILITY_NAMED_IAM value to acknowledge your template's capabilities. For more information, see Acknowledging IAM Resources in AWS CloudFormation Templates.

      Returns:
      this
    • build

      @Stability(Stable) public LazyRoleProps build()
      Builds the configured instance.
      Specified by:
      build in interface software.amazon.jsii.Builder<LazyRoleProps>
      Returns:
      a new instance of LazyRoleProps
      Throws:
      NullPointerException - if any required attribute was not provided