Interface CfnApplicationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.120.0 (build 192dc88)",
date="2025-12-05T22:26:46.190Z")
@Stability(Stable)
public interface CfnApplicationProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnApplication.
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.sso.*;
CfnApplicationProps cfnApplicationProps = CfnApplicationProps.builder()
.applicationProviderArn("applicationProviderArn")
.instanceArn("instanceArn")
.name("name")
// the properties below are optional
.description("description")
.portalOptions(PortalOptionsConfigurationProperty.builder()
.signInOptions(SignInOptionsProperty.builder()
.origin("origin")
// the properties below are optional
.applicationUrl("applicationUrl")
.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 forCfnApplicationPropsstatic final classAn implementation forCfnApplicationProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnApplicationProps.Builderbuilder()The ARN of the application provider for this application.default StringThe description of the application.The ARN of the instance of IAM Identity Center that is configured with this application.getName()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:
-
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:
-
getDescription
The description of the application.- See Also:
-
getPortalOptions
A structure that describes the options for the access portal associated with this application.Returns union: either
IResolvableorCfnApplication.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
CfnApplicationProps.BuilderofCfnApplicationProps
-