Amazon.Auth.AccessControlPolicy.Principal.Principal C# (CSharp) Метод

Principal() публичный Метод

Constructs a new principal with the specified AWS account ID.
public Principal ( string accountId ) : System
accountId string An AWS account ID.
Результат System
        public Principal(string accountId) 
            : this(AWS_PROVIDER, accountId)
        {
            if (accountId == null) 
            {
                throw new ArgumentNullException("accountId");
            }
        }

Same methods

Principal::Principal ( string provider, string id ) : System
Principal::Principal ( string provider, string id, bool stripHyphen ) : System
Principal