awssso

package
v2.0.0-rc.8 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 16, 2021 License: Apache-2.0 Imports: 6 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func CfnAssignment_CFN_RESOURCE_TYPE_NAME

func CfnAssignment_CFN_RESOURCE_TYPE_NAME() *string

func CfnAssignment_IsCfnElement

func CfnAssignment_IsCfnElement(x interface{}) *bool

Returns `true` if a construct is a stack element (i.e. part of the synthesized cloudformation template).

Uses duck-typing instead of `instanceof` to allow stack elements from different versions of this library to be included in the same stack.

Returns: The construct as a stack element or undefined if it is not a stack element. Experimental.

func CfnAssignment_IsCfnResource

func CfnAssignment_IsCfnResource(construct constructs.IConstruct) *bool

Check whether the given construct is a CfnResource. Experimental.

func CfnAssignment_IsConstruct

func CfnAssignment_IsConstruct(x interface{}) *bool

Checks if `x` is a construct.

Returns: true if `x` is an object created from a class which extends `Construct`. Deprecated: use `x instanceof Construct` instead

func CfnInstanceAccessControlAttributeConfiguration_CFN_RESOURCE_TYPE_NAME

func CfnInstanceAccessControlAttributeConfiguration_CFN_RESOURCE_TYPE_NAME() *string

func CfnInstanceAccessControlAttributeConfiguration_IsCfnElement

func CfnInstanceAccessControlAttributeConfiguration_IsCfnElement(x interface{}) *bool

Returns `true` if a construct is a stack element (i.e. part of the synthesized cloudformation template).

Uses duck-typing instead of `instanceof` to allow stack elements from different versions of this library to be included in the same stack.

Returns: The construct as a stack element or undefined if it is not a stack element. Experimental.

func CfnInstanceAccessControlAttributeConfiguration_IsCfnResource

func CfnInstanceAccessControlAttributeConfiguration_IsCfnResource(construct constructs.IConstruct) *bool

Check whether the given construct is a CfnResource. Experimental.

func CfnInstanceAccessControlAttributeConfiguration_IsConstruct

func CfnInstanceAccessControlAttributeConfiguration_IsConstruct(x interface{}) *bool

Checks if `x` is a construct.

Returns: true if `x` is an object created from a class which extends `Construct`. Deprecated: use `x instanceof Construct` instead

func CfnPermissionSet_CFN_RESOURCE_TYPE_NAME

func CfnPermissionSet_CFN_RESOURCE_TYPE_NAME() *string

func CfnPermissionSet_IsCfnElement

func CfnPermissionSet_IsCfnElement(x interface{}) *bool

Returns `true` if a construct is a stack element (i.e. part of the synthesized cloudformation template).

Uses duck-typing instead of `instanceof` to allow stack elements from different versions of this library to be included in the same stack.

Returns: The construct as a stack element or undefined if it is not a stack element. Experimental.

func CfnPermissionSet_IsCfnResource

func CfnPermissionSet_IsCfnResource(construct constructs.IConstruct) *bool

Check whether the given construct is a CfnResource. Experimental.

func CfnPermissionSet_IsConstruct

func CfnPermissionSet_IsConstruct(x interface{}) *bool

Checks if `x` is a construct.

Returns: true if `x` is an object created from a class which extends `Construct`. Deprecated: use `x instanceof Construct` instead

func NewCfnAssignment_Override

func NewCfnAssignment_Override(c CfnAssignment, scope constructs.Construct, id *string, props *CfnAssignmentProps)

Create a new `AWS::SSO::Assignment`.

func NewCfnInstanceAccessControlAttributeConfiguration_Override

func NewCfnInstanceAccessControlAttributeConfiguration_Override(c CfnInstanceAccessControlAttributeConfiguration, scope constructs.Construct, id *string, props *CfnInstanceAccessControlAttributeConfigurationProps)

Create a new `AWS::SSO::InstanceAccessControlAttributeConfiguration`.

func NewCfnPermissionSet_Override

func NewCfnPermissionSet_Override(c CfnPermissionSet, scope constructs.Construct, id *string, props *CfnPermissionSetProps)

Create a new `AWS::SSO::PermissionSet`.

Types

type CfnAssignment

type CfnAssignment interface {
	awscdk.CfnResource
	awscdk.IInspectable
	CfnOptions() awscdk.ICfnResourceOptions
	CfnProperties() *map[string]interface{}
	CfnResourceType() *string
	CreationStack() *[]*string
	InstanceArn() *string
	SetInstanceArn(val *string)
	LogicalId() *string
	Node() constructs.Node
	PermissionSetArn() *string
	SetPermissionSetArn(val *string)
	PrincipalId() *string
	SetPrincipalId(val *string)
	PrincipalType() *string
	SetPrincipalType(val *string)
	Ref() *string
	Stack() awscdk.Stack
	TargetId() *string
	SetTargetId(val *string)
	TargetType() *string
	SetTargetType(val *string)
	UpdatedProperites() *map[string]interface{}
	AddDeletionOverride(path *string)
	AddDependsOn(target awscdk.CfnResource)
	AddMetadata(key *string, value interface{})
	AddOverride(path *string, value interface{})
	AddPropertyDeletionOverride(propertyPath *string)
	AddPropertyOverride(propertyPath *string, value interface{})
	ApplyRemovalPolicy(policy awscdk.RemovalPolicy, options *awscdk.RemovalPolicyOptions)
	GetAtt(attributeName *string) awscdk.Reference
	GetMetadata(key *string) interface{}
	Inspect(inspector awscdk.TreeInspector)
	OverrideLogicalId(newLogicalId *string)
	RenderProperties(props *map[string]interface{}) *map[string]interface{}
	ShouldSynthesize() *bool
	ToString() *string
	ValidateProperties(_properties interface{})
}

A CloudFormation `AWS::SSO::Assignment`.

func NewCfnAssignment

func NewCfnAssignment(scope constructs.Construct, id *string, props *CfnAssignmentProps) CfnAssignment

Create a new `AWS::SSO::Assignment`.

type CfnAssignmentProps

type CfnAssignmentProps struct {
	// `AWS::SSO::Assignment.InstanceArn`.
	InstanceArn *string `json:"instanceArn"`
	// `AWS::SSO::Assignment.PermissionSetArn`.
	PermissionSetArn *string `json:"permissionSetArn"`
	// `AWS::SSO::Assignment.PrincipalId`.
	PrincipalId *string `json:"principalId"`
	// `AWS::SSO::Assignment.PrincipalType`.
	PrincipalType *string `json:"principalType"`
	// `AWS::SSO::Assignment.TargetId`.
	TargetId *string `json:"targetId"`
	// `AWS::SSO::Assignment.TargetType`.
	TargetType *string `json:"targetType"`
}

Properties for defining a `AWS::SSO::Assignment`.

type CfnInstanceAccessControlAttributeConfiguration

type CfnInstanceAccessControlAttributeConfiguration interface {
	awscdk.CfnResource
	awscdk.IInspectable
	AccessControlAttributes() interface{}
	SetAccessControlAttributes(val interface{})
	CfnOptions() awscdk.ICfnResourceOptions
	CfnProperties() *map[string]interface{}
	CfnResourceType() *string
	CreationStack() *[]*string
	InstanceArn() *string
	SetInstanceArn(val *string)
	LogicalId() *string
	Node() constructs.Node
	Ref() *string
	Stack() awscdk.Stack
	UpdatedProperites() *map[string]interface{}
	AddDeletionOverride(path *string)
	AddDependsOn(target awscdk.CfnResource)
	AddMetadata(key *string, value interface{})
	AddOverride(path *string, value interface{})
	AddPropertyDeletionOverride(propertyPath *string)
	AddPropertyOverride(propertyPath *string, value interface{})
	ApplyRemovalPolicy(policy awscdk.RemovalPolicy, options *awscdk.RemovalPolicyOptions)
	GetAtt(attributeName *string) awscdk.Reference
	GetMetadata(key *string) interface{}
	Inspect(inspector awscdk.TreeInspector)
	OverrideLogicalId(newLogicalId *string)
	RenderProperties(props *map[string]interface{}) *map[string]interface{}
	ShouldSynthesize() *bool
	ToString() *string
	ValidateProperties(_properties interface{})
}

A CloudFormation `AWS::SSO::InstanceAccessControlAttributeConfiguration`.

func NewCfnInstanceAccessControlAttributeConfiguration

func NewCfnInstanceAccessControlAttributeConfiguration(scope constructs.Construct, id *string, props *CfnInstanceAccessControlAttributeConfigurationProps) CfnInstanceAccessControlAttributeConfiguration

Create a new `AWS::SSO::InstanceAccessControlAttributeConfiguration`.

type CfnInstanceAccessControlAttributeConfigurationProps

type CfnInstanceAccessControlAttributeConfigurationProps struct {
	// `AWS::SSO::InstanceAccessControlAttributeConfiguration.InstanceArn`.
	InstanceArn *string `json:"instanceArn"`
	// `AWS::SSO::InstanceAccessControlAttributeConfiguration.AccessControlAttributes`.
	AccessControlAttributes interface{} `json:"accessControlAttributes"`
}

Properties for defining a `AWS::SSO::InstanceAccessControlAttributeConfiguration`.

type CfnInstanceAccessControlAttributeConfiguration_AccessControlAttributeProperty

type CfnInstanceAccessControlAttributeConfiguration_AccessControlAttributeProperty struct {
	// `CfnInstanceAccessControlAttributeConfiguration.AccessControlAttributeProperty.Key`.
	Key *string `json:"key"`
	// `CfnInstanceAccessControlAttributeConfiguration.AccessControlAttributeProperty.Value`.
	Value interface{} `json:"value"`
}

type CfnInstanceAccessControlAttributeConfiguration_AccessControlAttributeValueProperty

type CfnInstanceAccessControlAttributeConfiguration_AccessControlAttributeValueProperty struct {
	// `CfnInstanceAccessControlAttributeConfiguration.AccessControlAttributeValueProperty.Source`.
	Source *[]*string `json:"source"`
}

type CfnPermissionSet

type CfnPermissionSet interface {
	awscdk.CfnResource
	awscdk.IInspectable
	AttrPermissionSetArn() *string
	CfnOptions() awscdk.ICfnResourceOptions
	CfnProperties() *map[string]interface{}
	CfnResourceType() *string
	CreationStack() *[]*string
	Description() *string
	SetDescription(val *string)
	InlinePolicy() interface{}
	SetInlinePolicy(val interface{})
	InstanceArn() *string
	SetInstanceArn(val *string)
	LogicalId() *string
	ManagedPolicies() *[]*string
	SetManagedPolicies(val *[]*string)
	Name() *string
	SetName(val *string)
	Node() constructs.Node
	Ref() *string
	RelayStateType() *string
	SetRelayStateType(val *string)
	SessionDuration() *string
	SetSessionDuration(val *string)
	Stack() awscdk.Stack
	Tags() awscdk.TagManager
	UpdatedProperites() *map[string]interface{}
	AddDeletionOverride(path *string)
	AddDependsOn(target awscdk.CfnResource)
	AddMetadata(key *string, value interface{})
	AddOverride(path *string, value interface{})
	AddPropertyDeletionOverride(propertyPath *string)
	AddPropertyOverride(propertyPath *string, value interface{})
	ApplyRemovalPolicy(policy awscdk.RemovalPolicy, options *awscdk.RemovalPolicyOptions)
	GetAtt(attributeName *string) awscdk.Reference
	GetMetadata(key *string) interface{}
	Inspect(inspector awscdk.TreeInspector)
	OverrideLogicalId(newLogicalId *string)
	RenderProperties(props *map[string]interface{}) *map[string]interface{}
	ShouldSynthesize() *bool
	ToString() *string
	ValidateProperties(_properties interface{})
}

A CloudFormation `AWS::SSO::PermissionSet`.

func NewCfnPermissionSet

func NewCfnPermissionSet(scope constructs.Construct, id *string, props *CfnPermissionSetProps) CfnPermissionSet

Create a new `AWS::SSO::PermissionSet`.

type CfnPermissionSetProps

type CfnPermissionSetProps struct {
	// `AWS::SSO::PermissionSet.InstanceArn`.
	InstanceArn *string `json:"instanceArn"`
	// `AWS::SSO::PermissionSet.Name`.
	Name *string `json:"name"`
	// `AWS::SSO::PermissionSet.Description`.
	Description *string `json:"description"`
	// `AWS::SSO::PermissionSet.InlinePolicy`.
	InlinePolicy interface{} `json:"inlinePolicy"`
	// `AWS::SSO::PermissionSet.ManagedPolicies`.
	ManagedPolicies *[]*string `json:"managedPolicies"`
	// `AWS::SSO::PermissionSet.RelayStateType`.
	RelayStateType *string `json:"relayStateType"`
	// `AWS::SSO::PermissionSet.SessionDuration`.
	SessionDuration *string `json:"sessionDuration"`
	// `AWS::SSO::PermissionSet.Tags`.
	Tags *[]*awscdk.CfnTag `json:"tags"`
}

Properties for defining a `AWS::SSO::PermissionSet`.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL