Show / Hide Table of Contents

Interface CfnAgentSpace.IOperatorAppProperty

Namespace: Amazon.CDK.AWS.DevOpsAgent
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnAgentSpace.IOperatorAppProperty
Syntax (vb)
Public Interface CfnAgentSpace.IOperatorAppProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-agentspace-operatorapp.html

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.DevOpsAgent;

             var operatorAppProperty = new OperatorAppProperty {
                 Iam = new IamAuthConfigurationProperty {
                     OperatorAppRoleArn = "operatorAppRoleArn",

                     // the properties below are optional
                     CreatedAt = "createdAt",
                     UpdatedAt = "updatedAt"
                 },
                 Idc = new IdcAuthConfigurationProperty {
                     IdcInstanceArn = "idcInstanceArn",
                     OperatorAppRoleArn = "operatorAppRoleArn",

                     // the properties below are optional
                     CreatedAt = "createdAt",
                     IdcApplicationArn = "idcApplicationArn",
                     UpdatedAt = "updatedAt"
                 }
             };

Synopsis

Properties

Iam
Idc

Properties

Iam

object? Iam { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-agentspace-operatorapp.html#cfn-devopsagent-agentspace-operatorapp-iam

Type union: either IResolvable or CfnAgentSpace.IIamAuthConfigurationProperty

Idc

object? Idc { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-devopsagent-agentspace-operatorapp.html#cfn-devopsagent-agentspace-operatorapp-idc

Type union: either IResolvable or CfnAgentSpace.IIdcAuthConfigurationProperty

Back to top Generated by DocFX