Interface CfnInstanceProfileProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnInstanceProfileProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:29:57.234Z") @Stability(Stable) public interface CfnInstanceProfileProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnInstanceProfile.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.iam.*;
 CfnInstanceProfileProps cfnInstanceProfileProps = CfnInstanceProfileProps.builder()
         .roles(List.of("roles"))
         // the properties below are optional
         .instanceProfileName("instanceProfileName")
         .path("path")
         .build();
 
  • Method Details

    • getRoles

      @Stability(Stable) @NotNull List<String> getRoles()
      The name of the role to associate with the instance profile.

      Only one role can be assigned to an EC2 instance at a time, and all applications on the instance share the same role and permissions.

    • getInstanceProfileName

      @Stability(Stable) @Nullable default String getInstanceProfileName()
      The name of the instance profile to create.

      This parameter allows (through its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-

    • getPath

      @Stability(Stable) @Nullable default String getPath()
      The path to the instance profile.

      For more information about paths, see IAM Identifiers in the IAM User Guide .

      This parameter is optional. If it is not included, it defaults to a slash (/).

      This parameter allows (through its regex pattern ) a string of characters consisting of either a forward slash (/) by itself or a string that must begin and end with forward slashes. In addition, it can contain any ASCII character from the ! ( \ u0021 ) through the DEL character ( \ u007F ), including most punctuation characters, digits, and upper and lowercased letters.

    • builder

      @Stability(Stable) static CfnInstanceProfileProps.Builder builder()
      Returns:
      a CfnInstanceProfileProps.Builder of CfnInstanceProfileProps