Interface CfnApplicationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2025-01-15T21:09:27.720Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnApplicationProps
static final class
An implementation forCfnApplicationProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnApplicationProps.Builder
builder()
The ARN of the application provider for this application.default String
The 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 Object
A structure that describes the options for the access portal associated with this application.default String
The 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.- 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.Builder
ofCfnApplicationProps
-