Amazon.IdentityManagement.Model.PutGroupPolicyRequest.PutGroupPolicyRequest C# (CSharp) Метод

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

Instantiates PutGroupPolicyRequest with the parameterized properties
public PutGroupPolicyRequest ( string groupName, string policyName, string policyDocument ) : System
groupName string The name of the group to associate the policy with. This parameter allows (per its regex pattern) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@-
policyName string The name of the policy document. This parameter allows (per its regex pattern) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: =,.@-
policyDocument string The policy document. This parameter allows (per its regex pattern) a string of characters consisting of any printable ASCII character ranging from the space character (\u0020) through end of the ASCII character range (\u00FF). It also includes the special characters tab (\u0009), line feed (\u000A), and carriage return (\u000D).
Результат System
        public PutGroupPolicyRequest(string groupName, string policyName, string policyDocument)
        {
            _groupName = groupName;
            _policyName = policyName;
            _policyDocument = policyDocument;
        }

Same methods

PutGroupPolicyRequest::PutGroupPolicyRequest ( ) : System