Show / Hide Table of Contents

Class CfnVerifiedAccessTrustProvider

A trust provider is a third-party entity that creates, maintains, and manages identity information for users and devices.

Inheritance
object
CfnElement
CfnRefElement
CfnResource
CfnVerifiedAccessTrustProvider
Implements
IInspectable
IVerifiedAccessTrustProviderRef
IConstruct
IDependable
IEnvironmentAware
ITaggable
Inherited Members
CfnResource.IsCfnResource(object)
CfnResource.AddDeletionOverride(string)
CfnResource.AddDependency(CfnResource)
CfnResource.AddDependsOn(CfnResource)
CfnResource.AddMetadata(string, object)
CfnResource.AddOverride(string, object)
CfnResource.AddPropertyDeletionOverride(string)
CfnResource.AddPropertyOverride(string, object)
CfnResource.ApplyRemovalPolicy(RemovalPolicy?, IRemovalPolicyOptions)
CfnResource.GetAtt(string, ResolutionTypeHint?)
CfnResource.GetMetadata(string)
CfnResource.ObtainDependencies()
CfnResource.ObtainResourceDependencies()
CfnResource.RemoveDependency(CfnResource)
CfnResource.ReplaceDependency(CfnResource, CfnResource)
CfnResource.ShouldSynthesize()
CfnResource.ToString()
CfnResource.ValidateProperties(object)
CfnResource.CfnOptions
CfnResource.CfnResourceType
CfnResource.Env
CfnResource.UpdatedProperites
CfnResource.UpdatedProperties
CfnRefElement.Ref
CfnElement.IsCfnElement(object)
CfnElement.OverrideLogicalId(string)
CfnElement.CreationStack
CfnElement.LogicalId
CfnElement.Stack
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnVerifiedAccessTrustProvider : CfnResource, IInspectable, IVerifiedAccessTrustProviderRef, IConstruct, IDependable, IEnvironmentAware, ITaggable
Syntax (vb)
Public Class CfnVerifiedAccessTrustProvider Inherits CfnResource Implements IInspectable, IVerifiedAccessTrustProviderRef, IConstruct, IDependable, IEnvironmentAware, ITaggable
Remarks

When an application request is made, the identity information sent by the trust provider is evaluated by Verified Access before allowing or denying the application request.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-verifiedaccesstrustprovider.html

CloudformationResource: AWS::EC2::VerifiedAccessTrustProvider

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.EC2;

             var cfnVerifiedAccessTrustProvider = new CfnVerifiedAccessTrustProvider(this, "MyCfnVerifiedAccessTrustProvider", new CfnVerifiedAccessTrustProviderProps {
                 PolicyReferenceName = "policyReferenceName",
                 TrustProviderType = "trustProviderType",

                 // the properties below are optional
                 Description = "description",
                 DeviceOptions = new DeviceOptionsProperty {
                     PublicSigningKeyUrl = "publicSigningKeyUrl",
                     TenantId = "tenantId"
                 },
                 DeviceTrustProviderType = "deviceTrustProviderType",
                 NativeApplicationOidcOptions = new NativeApplicationOidcOptionsProperty {
                     AuthorizationEndpoint = "authorizationEndpoint",
                     ClientId = "clientId",
                     ClientSecret = "clientSecret",
                     Issuer = "issuer",
                     PublicSigningKeyEndpoint = "publicSigningKeyEndpoint",
                     Scope = "scope",
                     TokenEndpoint = "tokenEndpoint",
                     UserInfoEndpoint = "userInfoEndpoint"
                 },
                 OidcOptions = new OidcOptionsProperty {
                     AuthorizationEndpoint = "authorizationEndpoint",
                     ClientId = "clientId",
                     ClientSecret = "clientSecret",
                     Issuer = "issuer",
                     Scope = "scope",
                     TokenEndpoint = "tokenEndpoint",
                     UserInfoEndpoint = "userInfoEndpoint"
                 },
                 SseSpecification = new SseSpecificationProperty {
                     CustomerManagedKeyEnabled = false,
                     KmsKeyArn = "kmsKeyArn"
                 },
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } },
                 UserTrustProviderType = "userTrustProviderType"
             });

Synopsis

Constructors

CfnVerifiedAccessTrustProvider(Construct, string, ICfnVerifiedAccessTrustProviderProps)

Create a new AWS::EC2::VerifiedAccessTrustProvider.

Properties

AttrCreationTime

The creation time.

AttrLastUpdatedTime

The last updated time.

AttrVerifiedAccessTrustProviderId

The ID of the Verified Access trust provider.

CFN_RESOURCE_TYPE_NAME

The CloudFormation resource type name for this resource class.

CfnProperties

A trust provider is a third-party entity that creates, maintains, and manages identity information for users and devices.

Description

A description for the AWS Verified Access trust provider.

DeviceOptions

The options for device-identity trust provider.

DeviceTrustProviderType

The type of device-based trust provider.

NativeApplicationOidcOptions

The OpenID Connect (OIDC) options.

OidcOptions

The options for an OpenID Connect-compatible user-identity trust provider.

PolicyReferenceName

The identifier to be used when working with policy rules.

SseSpecification

The options for additional server side encryption.

Tags

Tag Manager which manages the tags for this resource.

TagsRaw

The tags.

TrustProviderType

The type of Verified Access trust provider.

UserTrustProviderType

The type of user-based trust provider.

VerifiedAccessTrustProviderRef

A reference to a VerifiedAccessTrustProvider resource.

Methods

ArnForVerifiedAccessTrustProvider(IVerifiedAccessTrustProviderRef)

A trust provider is a third-party entity that creates, maintains, and manages identity information for users and devices.

FromVerifiedAccessTrustProviderId(Construct, string, string)

Creates a new IVerifiedAccessTrustProviderRef from a verifiedAccessTrustProviderId.

Inspect(TreeInspector)

Examines the CloudFormation resource and discloses attributes.

IsCfnVerifiedAccessTrustProvider(object)

Checks whether the given object is a CfnVerifiedAccessTrustProvider.

RenderProperties(IDictionary<string, object>)

A trust provider is a third-party entity that creates, maintains, and manages identity information for users and devices.

Constructors

CfnVerifiedAccessTrustProvider(Construct, string, ICfnVerifiedAccessTrustProviderProps)

Create a new AWS::EC2::VerifiedAccessTrustProvider.

public CfnVerifiedAccessTrustProvider(Construct scope, string id, ICfnVerifiedAccessTrustProviderProps props)
Parameters
scope Construct

Scope in which this resource is defined.

id string

Construct identifier for this resource (unique in its scope).

props ICfnVerifiedAccessTrustProviderProps

Resource properties.

Remarks

When an application request is made, the identity information sent by the trust provider is evaluated by Verified Access before allowing or denying the application request.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-verifiedaccesstrustprovider.html

CloudformationResource: AWS::EC2::VerifiedAccessTrustProvider

ExampleMetadata: fixture=_generated

Properties

AttrCreationTime

The creation time.

public virtual string AttrCreationTime { get; }
Property Value

string

Remarks

CloudformationAttribute: CreationTime

AttrLastUpdatedTime

The last updated time.

public virtual string AttrLastUpdatedTime { get; }
Property Value

string

Remarks

CloudformationAttribute: LastUpdatedTime

AttrVerifiedAccessTrustProviderId

The ID of the Verified Access trust provider.

public virtual string AttrVerifiedAccessTrustProviderId { get; }
Property Value

string

Remarks

CloudformationAttribute: VerifiedAccessTrustProviderId

CFN_RESOURCE_TYPE_NAME

The CloudFormation resource type name for this resource class.

public static string CFN_RESOURCE_TYPE_NAME { get; }
Property Value

string

Remarks

When an application request is made, the identity information sent by the trust provider is evaluated by Verified Access before allowing or denying the application request.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-verifiedaccesstrustprovider.html

CloudformationResource: AWS::EC2::VerifiedAccessTrustProvider

ExampleMetadata: fixture=_generated

CfnProperties

A trust provider is a third-party entity that creates, maintains, and manages identity information for users and devices.

protected override IDictionary<string, object> CfnProperties { get; }
Property Value

IDictionary<string, object>

Overrides
CfnResource.CfnProperties
Remarks

When an application request is made, the identity information sent by the trust provider is evaluated by Verified Access before allowing or denying the application request.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-verifiedaccesstrustprovider.html

CloudformationResource: AWS::EC2::VerifiedAccessTrustProvider

ExampleMetadata: fixture=_generated

Description

A description for the AWS Verified Access trust provider.

public virtual string? Description { get; set; }
Property Value

string

Remarks

When an application request is made, the identity information sent by the trust provider is evaluated by Verified Access before allowing or denying the application request.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-verifiedaccesstrustprovider.html

CloudformationResource: AWS::EC2::VerifiedAccessTrustProvider

ExampleMetadata: fixture=_generated

DeviceOptions

The options for device-identity trust provider.

public virtual object? DeviceOptions { get; set; }
Property Value

object

Remarks

Type union: either IResolvable or CfnVerifiedAccessTrustProvider.IDeviceOptionsProperty

DeviceTrustProviderType

The type of device-based trust provider.

public virtual string? DeviceTrustProviderType { get; set; }
Property Value

string

Remarks

When an application request is made, the identity information sent by the trust provider is evaluated by Verified Access before allowing or denying the application request.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-verifiedaccesstrustprovider.html

CloudformationResource: AWS::EC2::VerifiedAccessTrustProvider

ExampleMetadata: fixture=_generated

NativeApplicationOidcOptions

The OpenID Connect (OIDC) options.

public virtual object? NativeApplicationOidcOptions { get; set; }
Property Value

object

Remarks

Type union: either IResolvable or CfnVerifiedAccessTrustProvider.INativeApplicationOidcOptionsProperty

OidcOptions

The options for an OpenID Connect-compatible user-identity trust provider.

public virtual object? OidcOptions { get; set; }
Property Value

object

Remarks

Type union: either IResolvable or CfnVerifiedAccessTrustProvider.IOidcOptionsProperty

PolicyReferenceName

The identifier to be used when working with policy rules.

public virtual string PolicyReferenceName { get; set; }
Property Value

string

Remarks

When an application request is made, the identity information sent by the trust provider is evaluated by Verified Access before allowing or denying the application request.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-verifiedaccesstrustprovider.html

CloudformationResource: AWS::EC2::VerifiedAccessTrustProvider

ExampleMetadata: fixture=_generated

SseSpecification

The options for additional server side encryption.

public virtual object? SseSpecification { get; set; }
Property Value

object

Remarks

Type union: either IResolvable or CfnVerifiedAccessTrustProvider.ISseSpecificationProperty

Tags

Tag Manager which manages the tags for this resource.

public virtual TagManager Tags { get; }
Property Value

TagManager

Remarks

When an application request is made, the identity information sent by the trust provider is evaluated by Verified Access before allowing or denying the application request.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-verifiedaccesstrustprovider.html

CloudformationResource: AWS::EC2::VerifiedAccessTrustProvider

ExampleMetadata: fixture=_generated

TagsRaw

The tags.

public virtual ICfnTag[]? TagsRaw { get; set; }
Property Value

ICfnTag[]

Remarks

When an application request is made, the identity information sent by the trust provider is evaluated by Verified Access before allowing or denying the application request.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-verifiedaccesstrustprovider.html

CloudformationResource: AWS::EC2::VerifiedAccessTrustProvider

ExampleMetadata: fixture=_generated

TrustProviderType

The type of Verified Access trust provider.

public virtual string TrustProviderType { get; set; }
Property Value

string

Remarks

When an application request is made, the identity information sent by the trust provider is evaluated by Verified Access before allowing or denying the application request.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-verifiedaccesstrustprovider.html

CloudformationResource: AWS::EC2::VerifiedAccessTrustProvider

ExampleMetadata: fixture=_generated

UserTrustProviderType

The type of user-based trust provider.

public virtual string? UserTrustProviderType { get; set; }
Property Value

string

Remarks

When an application request is made, the identity information sent by the trust provider is evaluated by Verified Access before allowing or denying the application request.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-verifiedaccesstrustprovider.html

CloudformationResource: AWS::EC2::VerifiedAccessTrustProvider

ExampleMetadata: fixture=_generated

VerifiedAccessTrustProviderRef

A reference to a VerifiedAccessTrustProvider resource.

public virtual IVerifiedAccessTrustProviderReference VerifiedAccessTrustProviderRef { get; }
Property Value

IVerifiedAccessTrustProviderReference

Remarks

When an application request is made, the identity information sent by the trust provider is evaluated by Verified Access before allowing or denying the application request.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-verifiedaccesstrustprovider.html

CloudformationResource: AWS::EC2::VerifiedAccessTrustProvider

ExampleMetadata: fixture=_generated

Methods

ArnForVerifiedAccessTrustProvider(IVerifiedAccessTrustProviderRef)

A trust provider is a third-party entity that creates, maintains, and manages identity information for users and devices.

public static string ArnForVerifiedAccessTrustProvider(IVerifiedAccessTrustProviderRef resource)
Parameters
resource IVerifiedAccessTrustProviderRef
Returns

string

Remarks

When an application request is made, the identity information sent by the trust provider is evaluated by Verified Access before allowing or denying the application request.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-verifiedaccesstrustprovider.html

CloudformationResource: AWS::EC2::VerifiedAccessTrustProvider

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.EC2;

             var cfnVerifiedAccessTrustProvider = new CfnVerifiedAccessTrustProvider(this, "MyCfnVerifiedAccessTrustProvider", new CfnVerifiedAccessTrustProviderProps {
                 PolicyReferenceName = "policyReferenceName",
                 TrustProviderType = "trustProviderType",

                 // the properties below are optional
                 Description = "description",
                 DeviceOptions = new DeviceOptionsProperty {
                     PublicSigningKeyUrl = "publicSigningKeyUrl",
                     TenantId = "tenantId"
                 },
                 DeviceTrustProviderType = "deviceTrustProviderType",
                 NativeApplicationOidcOptions = new NativeApplicationOidcOptionsProperty {
                     AuthorizationEndpoint = "authorizationEndpoint",
                     ClientId = "clientId",
                     ClientSecret = "clientSecret",
                     Issuer = "issuer",
                     PublicSigningKeyEndpoint = "publicSigningKeyEndpoint",
                     Scope = "scope",
                     TokenEndpoint = "tokenEndpoint",
                     UserInfoEndpoint = "userInfoEndpoint"
                 },
                 OidcOptions = new OidcOptionsProperty {
                     AuthorizationEndpoint = "authorizationEndpoint",
                     ClientId = "clientId",
                     ClientSecret = "clientSecret",
                     Issuer = "issuer",
                     Scope = "scope",
                     TokenEndpoint = "tokenEndpoint",
                     UserInfoEndpoint = "userInfoEndpoint"
                 },
                 SseSpecification = new SseSpecificationProperty {
                     CustomerManagedKeyEnabled = false,
                     KmsKeyArn = "kmsKeyArn"
                 },
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } },
                 UserTrustProviderType = "userTrustProviderType"
             });

FromVerifiedAccessTrustProviderId(Construct, string, string)

Creates a new IVerifiedAccessTrustProviderRef from a verifiedAccessTrustProviderId.

public static IVerifiedAccessTrustProviderRef FromVerifiedAccessTrustProviderId(Construct scope, string id, string verifiedAccessTrustProviderId)
Parameters
scope Construct
id string
verifiedAccessTrustProviderId string
Returns

IVerifiedAccessTrustProviderRef

Remarks

When an application request is made, the identity information sent by the trust provider is evaluated by Verified Access before allowing or denying the application request.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-verifiedaccesstrustprovider.html

CloudformationResource: AWS::EC2::VerifiedAccessTrustProvider

ExampleMetadata: fixture=_generated

Inspect(TreeInspector)

Examines the CloudFormation resource and discloses attributes.

public virtual void Inspect(TreeInspector inspector)
Parameters
inspector TreeInspector

tree inspector to collect and process attributes.

Remarks

When an application request is made, the identity information sent by the trust provider is evaluated by Verified Access before allowing or denying the application request.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-verifiedaccesstrustprovider.html

CloudformationResource: AWS::EC2::VerifiedAccessTrustProvider

ExampleMetadata: fixture=_generated

IsCfnVerifiedAccessTrustProvider(object)

Checks whether the given object is a CfnVerifiedAccessTrustProvider.

public static bool IsCfnVerifiedAccessTrustProvider(object x)
Parameters
x object
Returns

bool

Remarks

When an application request is made, the identity information sent by the trust provider is evaluated by Verified Access before allowing or denying the application request.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-verifiedaccesstrustprovider.html

CloudformationResource: AWS::EC2::VerifiedAccessTrustProvider

ExampleMetadata: fixture=_generated

RenderProperties(IDictionary<string, object>)

A trust provider is a third-party entity that creates, maintains, and manages identity information for users and devices.

protected override IDictionary<string, object> RenderProperties(IDictionary<string, object> props)
Parameters
props IDictionary<string, object>
Returns

IDictionary<string, object>

Overrides
CfnResource.RenderProperties(IDictionary<string, object>)
Remarks

When an application request is made, the identity information sent by the trust provider is evaluated by Verified Access before allowing or denying the application request.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-verifiedaccesstrustprovider.html

CloudformationResource: AWS::EC2::VerifiedAccessTrustProvider

ExampleMetadata: fixture=_generated

Implements

IInspectable
IVerifiedAccessTrustProviderRef
Constructs.IConstruct
Constructs.IDependable
IEnvironmentAware
ITaggable
Back to top Generated by DocFX