Class CfnPortfolioPrincipalAssociationProps
Properties for defining a CfnPortfolioPrincipalAssociation
.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Servicecatalog
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnPortfolioPrincipalAssociationProps : ICfnPortfolioPrincipalAssociationProps
Syntax (vb)
Public Class CfnPortfolioPrincipalAssociationProps Implements ICfnPortfolioPrincipalAssociationProps
Remarks
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.Servicecatalog;
var cfnPortfolioPrincipalAssociationProps = new CfnPortfolioPrincipalAssociationProps {
PortfolioId = "portfolioId",
PrincipalArn = "principalArn",
PrincipalType = "principalType",
// the properties below are optional
AcceptLanguage = "acceptLanguage"
};
Synopsis
Constructors
CfnPortfolioPrincipalAssociationProps() | Properties for defining a |
Properties
AcceptLanguage | The language code. |
PortfolioId | The portfolio identifier. |
PrincipalArn | The ARN of the principal ( IAM user, role, or group). |
PrincipalType | The principal type. |
Constructors
CfnPortfolioPrincipalAssociationProps()
Properties for defining a CfnPortfolioPrincipalAssociation
.
public CfnPortfolioPrincipalAssociationProps()
Remarks
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.Servicecatalog;
var cfnPortfolioPrincipalAssociationProps = new CfnPortfolioPrincipalAssociationProps {
PortfolioId = "portfolioId",
PrincipalArn = "principalArn",
PrincipalType = "principalType",
// the properties below are optional
AcceptLanguage = "acceptLanguage"
};
Properties
AcceptLanguage
The language code.
public string? AcceptLanguage { get; set; }
Property Value
Remarks
PortfolioId
The portfolio identifier.
public string PortfolioId { get; set; }
Property Value
Remarks
PrincipalArn
The ARN of the principal ( IAM user, role, or group).
public string PrincipalArn { get; set; }
Property Value
Remarks
PrincipalType
The principal type.
public string PrincipalType { get; set; }
Property Value
Remarks
The supported values are IAM
and IAM_PATTERN
.