@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:42.363Z") @Stability(value=Stable) public interface CfnPermissionSetProps extends software.amazon.jsii.JsiiSerializable
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.*;
Object inlinePolicy;
CfnPermissionSetProps cfnPermissionSetProps = CfnPermissionSetProps.builder()
.instanceArn("instanceArn")
.name("name")
// the properties below are optional
.customerManagedPolicyReferences(List.of(CustomerManagedPolicyReferenceProperty.builder()
.name("name")
// the properties below are optional
.path("path")
.build()))
.description("description")
.inlinePolicy(inlinePolicy)
.managedPolicies(List.of("managedPolicies"))
.permissionsBoundary(PermissionsBoundaryProperty.builder()
.customerManagedPolicyReference(CustomerManagedPolicyReferenceProperty.builder()
.name("name")
// the properties below are optional
.path("path")
.build())
.managedPolicyArn("managedPolicyArn")
.build())
.relayStateType("relayStateType")
.sessionDuration("sessionDuration")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnPermissionSetProps.Builder
A builder for
CfnPermissionSetProps |
static class |
CfnPermissionSetProps.Jsii$Proxy
An implementation for
CfnPermissionSetProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnPermissionSetProps.Builder |
builder() |
default Object |
getCustomerManagedPolicyReferences()
`AWS::SSO::PermissionSet.CustomerManagedPolicyReferences`.
|
default String |
getDescription()
The description of the `PermissionSet` .
|
default Object |
getInlinePolicy()
The IAM inline policy that is attached to the permission set.
|
String |
getInstanceArn()
The ARN of the SSO instance under which the operation will be executed.
|
default List<String> |
getManagedPolicies()
A structure that stores the details of the IAM managed policy.
|
String |
getName()
The name of the permission set.
|
default Object |
getPermissionsBoundary()
`AWS::SSO::PermissionSet.PermissionsBoundary`.
|
default String |
getRelayStateType()
Used to redirect users within the application during the federation authentication process.
|
default String |
getSessionDuration()
The length of time that the application user sessions are valid for in the ISO-8601 standard.
|
default List<CfnTag> |
getTags()
The tags to attach to the new `PermissionSet` .
|
@Stability(value=Stable) @NotNull String getInstanceArn()
For more information about ARNs, see Amazon Resource Names (ARNs) and AWS Service Namespaces in the AWS General Reference .
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @Nullable default Object getCustomerManagedPolicyReferences()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default Object getInlinePolicy()
@Stability(value=Stable) @Nullable default List<String> getManagedPolicies()
@Stability(value=Stable) @Nullable default Object getPermissionsBoundary()
@Stability(value=Stable) @Nullable default String getRelayStateType()
@Stability(value=Stable) @Nullable default String getSessionDuration()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnPermissionSetProps.Builder builder()
CfnPermissionSetProps.Builder of CfnPermissionSetPropsCopyright © 2022. All rights reserved.