Interface CfnApplicationMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:05.768Z")
@Stability(Stable)
public interface CfnApplicationMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnApplicationPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.sso.*;
CfnApplicationMixinProps cfnApplicationMixinProps = CfnApplicationMixinProps.builder()
.applicationProviderArn("applicationProviderArn")
.description("description")
.instanceArn("instanceArn")
.name("name")
.portalOptions(PortalOptionsConfigurationProperty.builder()
.signInOptions(SignInOptionsProperty.builder()
.applicationUrl("applicationUrl")
.origin("origin")
.build())
.visibility("visibility")
.build())
.status("status")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnApplicationMixinPropsstatic final classAn implementation forCfnApplicationMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe ARN of the application provider for this application.default StringThe description of the application.default StringThe ARN of the instance of IAM Identity Center that is configured with this application.default StringgetName()The name of the application.default ObjectA structure that describes the options for the access portal associated with this application.default StringThe current status of the application in this instance of IAM Identity Center.getTags()Specifies tags to be attached to the application.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApplicationProviderArn
The ARN of the application provider for this application.- See Also:
-
getDescription
The description of the application.- See Also:
-
getInstanceArn
The ARN of the instance of IAM Identity Center that is configured with this application.- See Also:
-
getName
The name of the application.- See Also:
-
getPortalOptions
A structure that describes the options for the access portal associated with this application.Returns union: either
IResolvableorCfnApplicationPropsMixin.PortalOptionsConfigurationProperty- See Also:
-
getStatus
The current status of the application in this instance of IAM Identity Center.- See Also:
-
getTags
Specifies tags to be attached to the application.- See Also:
-
builder
- Returns:
- a
CfnApplicationMixinProps.BuilderofCfnApplicationMixinProps
-