Examples of PutGroupPolicyRequest


Examples of com.amazonaws.services.identitymanagement.model.PutGroupPolicyRequest

        put(policyDocument, (ResultCapture<Void>)null);
    }

    @Override
    public void put(String policyDocument, ResultCapture<Void> extractor) {
        PutGroupPolicyRequest request = new PutGroupPolicyRequest()
            .withPolicyDocument(policyDocument);
        put(request, extractor);
    }
View Full Code Here

Examples of com.amazonaws.services.identitymanagement.model.PutGroupPolicyRequest

    @Override
    public GroupPolicy createPolicy(String policyName, String policyDocument,
            ResultCapture<Void> extractor) {

        PutGroupPolicyRequest request = new PutGroupPolicyRequest()
            .withPolicyName(policyName)
            .withPolicyDocument(policyDocument);
        return createPolicy(request, extractor);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.