Class CfnAppInstanceUser

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
All Implemented Interfaces:
IInspectable, IAppInstanceUserRef, IEnvironmentAware, ITaggableV2, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)", date="2026-07-22T17:37:21.721Z") @Stability(Stable) public class CfnAppInstanceUser extends CfnResource implements IInspectable, IAppInstanceUserRef, ITaggableV2
Resource Type definition for AWS::Chime::AppInstanceUser.

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.chime.*;
 CfnAppInstanceUser cfnAppInstanceUser = CfnAppInstanceUser.Builder.create(this, "MyCfnAppInstanceUser")
         .appInstanceArn("appInstanceArn")
         .appInstanceUserId("appInstanceUserId")
         // the properties below are optional
         .expirationSettings(ExpirationSettingsProperty.builder()
                 .expirationCriterion("expirationCriterion")
                 .expirationDays(123)
                 .build())
         .metadata("metadata")
         .name("name")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also:
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String CFN_RESOURCE_TYPE_NAME
      The CloudFormation resource type name for this resource class.
  • Constructor Details

    • CfnAppInstanceUser

      protected CfnAppInstanceUser(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnAppInstanceUser

      protected CfnAppInstanceUser(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnAppInstanceUser

      @Stability(Stable) public CfnAppInstanceUser(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnAppInstanceUserProps props)
      Create a new AWS::Chime::AppInstanceUser.

      Parameters:
      scope - Scope in which this resource is defined. This parameter is required.
      id - Construct identifier for this resource (unique in its scope). This parameter is required.
      props - Resource properties. This parameter is required.
  • Method Details

    • arnForAppInstanceUser

      @Stability(Stable) @NotNull public static String arnForAppInstanceUser(@NotNull IAppInstanceUserRef resource)
      Parameters:
      resource - This parameter is required.
    • isCfnAppInstanceUser

      @Stability(Stable) @NotNull public static Boolean isCfnAppInstanceUser(@NotNull Object x)
      Checks whether the given object is a CfnAppInstanceUser.

      Parameters:
      x - This parameter is required.
    • inspect

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      Parameters:
      inspector - tree inspector to collect and process attributes. This parameter is required.
    • renderProperties

      @Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
      Overrides:
      renderProperties in class CfnResource
      Parameters:
      props - This parameter is required.
    • getAppInstanceUserRef

      @Stability(Stable) @NotNull public AppInstanceUserReference getAppInstanceUserRef()
      A reference to a AppInstanceUser resource.
      Specified by:
      getAppInstanceUserRef in interface IAppInstanceUserRef
    • getAttrAppInstanceUserArn

      @Stability(Stable) @NotNull public String getAttrAppInstanceUserArn()
    • getCdkTagManager

      @Stability(Stable) @NotNull public TagManager getCdkTagManager()
      Tag Manager which manages the tags for this resource.
      Specified by:
      getCdkTagManager in interface ITaggableV2
    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getCfnPropertyNames

      @Stability(Stable) @NotNull protected Map<String,String> getCfnPropertyNames()
      Overrides:
      getCfnPropertyNames in class CfnResource
    • getAppInstanceArn

      @Stability(Stable) @NotNull public String getAppInstanceArn()
    • setAppInstanceArn

      @Stability(Stable) public void setAppInstanceArn(@NotNull String value)
    • getAppInstanceUserId

      @Stability(Stable) @NotNull public String getAppInstanceUserId()
    • setAppInstanceUserId

      @Stability(Stable) public void setAppInstanceUserId(@NotNull String value)
    • getExpirationSettings

      @Stability(Stable) @Nullable public Object getExpirationSettings()
    • setExpirationSettings

      @Stability(Stable) public void setExpirationSettings(@Nullable IResolvable value)
    • setExpirationSettings

      @Stability(Stable) public void setExpirationSettings(@Nullable CfnAppInstanceUser.ExpirationSettingsProperty value)
    • getMetadata

      @Stability(Stable) @Nullable public String getMetadata()
    • setMetadata

      @Stability(Stable) public void setMetadata(@Nullable String value)
    • getName

      @Stability(Stable) @Nullable public String getName()
    • setName

      @Stability(Stable) public void setName(@Nullable String value)
    • getTags

      @Stability(Stable) @Nullable public List<CfnTag> getTags()
    • setTags

      @Stability(Stable) public void setTags(@Nullable List<CfnTag> value)