id
int32 0
167k
| repo
stringlengths 5
54
| path
stringlengths 4
155
| func_name
stringlengths 1
118
| original_string
stringlengths 52
85.5k
| language
stringclasses 1
value | code
stringlengths 52
85.5k
| code_tokens
listlengths 21
1.41k
| docstring
stringlengths 6
2.61k
| docstring_tokens
listlengths 3
215
| sha
stringlengths 40
40
| url
stringlengths 85
252
|
---|---|---|---|---|---|---|---|---|---|---|---|
165,900 |
aws/aws-sdk-go
|
aws/request/request_pagination.go
|
HasNextPage
|
func (p *Pagination) HasNextPage() bool {
if !p.started {
return true
}
hasNextPage := len(p.nextTokens) != 0
if p.EndPageOnSameToken {
return hasNextPage && !awsutil.DeepEqual(p.nextTokens, p.prevTokens)
}
return hasNextPage
}
|
go
|
func (p *Pagination) HasNextPage() bool {
if !p.started {
return true
}
hasNextPage := len(p.nextTokens) != 0
if p.EndPageOnSameToken {
return hasNextPage && !awsutil.DeepEqual(p.nextTokens, p.prevTokens)
}
return hasNextPage
}
|
[
"func",
"(",
"p",
"*",
"Pagination",
")",
"HasNextPage",
"(",
")",
"bool",
"{",
"if",
"!",
"p",
".",
"started",
"{",
"return",
"true",
"\n",
"}",
"\n\n",
"hasNextPage",
":=",
"len",
"(",
"p",
".",
"nextTokens",
")",
"!=",
"0",
"\n",
"if",
"p",
".",
"EndPageOnSameToken",
"{",
"return",
"hasNextPage",
"&&",
"!",
"awsutil",
".",
"DeepEqual",
"(",
"p",
".",
"nextTokens",
",",
"p",
".",
"prevTokens",
")",
"\n",
"}",
"\n",
"return",
"hasNextPage",
"\n",
"}"
] |
// HasNextPage will return true if Pagination is able to determine that the API
// operation has additional pages. False will be returned if there are no more
// pages remaining.
//
// Will always return true if Next has not been called yet.
|
[
"HasNextPage",
"will",
"return",
"true",
"if",
"Pagination",
"is",
"able",
"to",
"determine",
"that",
"the",
"API",
"operation",
"has",
"additional",
"pages",
".",
"False",
"will",
"be",
"returned",
"if",
"there",
"are",
"no",
"more",
"pages",
"remaining",
".",
"Will",
"always",
"return",
"true",
"if",
"Next",
"has",
"not",
"been",
"called",
"yet",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/aws/request/request_pagination.go#L55-L65
|
165,901 |
aws/aws-sdk-go
|
aws/request/request_pagination.go
|
Next
|
func (p *Pagination) Next() bool {
if !p.HasNextPage() {
return false
}
req, err := p.NewRequest()
if err != nil {
p.err = err
return false
}
if p.started {
for i, intok := range req.Operation.InputTokens {
awsutil.SetValueAtPath(req.Params, intok, p.nextTokens[i])
}
}
p.started = true
err = req.Send()
if err != nil {
p.err = err
return false
}
p.prevTokens = p.nextTokens
p.nextTokens = req.nextPageTokens()
p.curPage = req.Data
return true
}
|
go
|
func (p *Pagination) Next() bool {
if !p.HasNextPage() {
return false
}
req, err := p.NewRequest()
if err != nil {
p.err = err
return false
}
if p.started {
for i, intok := range req.Operation.InputTokens {
awsutil.SetValueAtPath(req.Params, intok, p.nextTokens[i])
}
}
p.started = true
err = req.Send()
if err != nil {
p.err = err
return false
}
p.prevTokens = p.nextTokens
p.nextTokens = req.nextPageTokens()
p.curPage = req.Data
return true
}
|
[
"func",
"(",
"p",
"*",
"Pagination",
")",
"Next",
"(",
")",
"bool",
"{",
"if",
"!",
"p",
".",
"HasNextPage",
"(",
")",
"{",
"return",
"false",
"\n",
"}",
"\n\n",
"req",
",",
"err",
":=",
"p",
".",
"NewRequest",
"(",
")",
"\n",
"if",
"err",
"!=",
"nil",
"{",
"p",
".",
"err",
"=",
"err",
"\n",
"return",
"false",
"\n",
"}",
"\n\n",
"if",
"p",
".",
"started",
"{",
"for",
"i",
",",
"intok",
":=",
"range",
"req",
".",
"Operation",
".",
"InputTokens",
"{",
"awsutil",
".",
"SetValueAtPath",
"(",
"req",
".",
"Params",
",",
"intok",
",",
"p",
".",
"nextTokens",
"[",
"i",
"]",
")",
"\n",
"}",
"\n",
"}",
"\n",
"p",
".",
"started",
"=",
"true",
"\n\n",
"err",
"=",
"req",
".",
"Send",
"(",
")",
"\n",
"if",
"err",
"!=",
"nil",
"{",
"p",
".",
"err",
"=",
"err",
"\n",
"return",
"false",
"\n",
"}",
"\n\n",
"p",
".",
"prevTokens",
"=",
"p",
".",
"nextTokens",
"\n",
"p",
".",
"nextTokens",
"=",
"req",
".",
"nextPageTokens",
"(",
")",
"\n",
"p",
".",
"curPage",
"=",
"req",
".",
"Data",
"\n\n",
"return",
"true",
"\n",
"}"
] |
// Next will attempt to retrieve the next page for the API operation. When a page
// is retrieved true will be returned. If the page cannot be retrieved, or there
// are no more pages false will be returned.
//
// Use the Page method to retrieve the current page data. The data will need
// to be cast to the API operation's output type.
//
// Use the Err method to determine if an error occurred if Page returns false.
|
[
"Next",
"will",
"attempt",
"to",
"retrieve",
"the",
"next",
"page",
"for",
"the",
"API",
"operation",
".",
"When",
"a",
"page",
"is",
"retrieved",
"true",
"will",
"be",
"returned",
".",
"If",
"the",
"page",
"cannot",
"be",
"retrieved",
"or",
"there",
"are",
"no",
"more",
"pages",
"false",
"will",
"be",
"returned",
".",
"Use",
"the",
"Page",
"method",
"to",
"retrieve",
"the",
"current",
"page",
"data",
".",
"The",
"data",
"will",
"need",
"to",
"be",
"cast",
"to",
"the",
"API",
"operation",
"s",
"output",
"type",
".",
"Use",
"the",
"Err",
"method",
"to",
"determine",
"if",
"an",
"error",
"occurred",
"if",
"Page",
"returns",
"false",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/aws/request/request_pagination.go#L87-L116
|
165,902 |
aws/aws-sdk-go
|
aws/request/request_pagination.go
|
nextPageTokens
|
func (r *Request) nextPageTokens() []interface{} {
if r.Operation.Paginator == nil {
return nil
}
if r.Operation.TruncationToken != "" {
tr, _ := awsutil.ValuesAtPath(r.Data, r.Operation.TruncationToken)
if len(tr) == 0 {
return nil
}
switch v := tr[0].(type) {
case *bool:
if !aws.BoolValue(v) {
return nil
}
case bool:
if v == false {
return nil
}
}
}
tokens := []interface{}{}
tokenAdded := false
for _, outToken := range r.Operation.OutputTokens {
vs, _ := awsutil.ValuesAtPath(r.Data, outToken)
if len(vs) == 0 {
tokens = append(tokens, nil)
continue
}
v := vs[0]
switch tv := v.(type) {
case *string:
if len(aws.StringValue(tv)) == 0 {
tokens = append(tokens, nil)
continue
}
case string:
if len(tv) == 0 {
tokens = append(tokens, nil)
continue
}
}
tokenAdded = true
tokens = append(tokens, v)
}
if !tokenAdded {
return nil
}
return tokens
}
|
go
|
func (r *Request) nextPageTokens() []interface{} {
if r.Operation.Paginator == nil {
return nil
}
if r.Operation.TruncationToken != "" {
tr, _ := awsutil.ValuesAtPath(r.Data, r.Operation.TruncationToken)
if len(tr) == 0 {
return nil
}
switch v := tr[0].(type) {
case *bool:
if !aws.BoolValue(v) {
return nil
}
case bool:
if v == false {
return nil
}
}
}
tokens := []interface{}{}
tokenAdded := false
for _, outToken := range r.Operation.OutputTokens {
vs, _ := awsutil.ValuesAtPath(r.Data, outToken)
if len(vs) == 0 {
tokens = append(tokens, nil)
continue
}
v := vs[0]
switch tv := v.(type) {
case *string:
if len(aws.StringValue(tv)) == 0 {
tokens = append(tokens, nil)
continue
}
case string:
if len(tv) == 0 {
tokens = append(tokens, nil)
continue
}
}
tokenAdded = true
tokens = append(tokens, v)
}
if !tokenAdded {
return nil
}
return tokens
}
|
[
"func",
"(",
"r",
"*",
"Request",
")",
"nextPageTokens",
"(",
")",
"[",
"]",
"interface",
"{",
"}",
"{",
"if",
"r",
".",
"Operation",
".",
"Paginator",
"==",
"nil",
"{",
"return",
"nil",
"\n",
"}",
"\n",
"if",
"r",
".",
"Operation",
".",
"TruncationToken",
"!=",
"\"",
"\"",
"{",
"tr",
",",
"_",
":=",
"awsutil",
".",
"ValuesAtPath",
"(",
"r",
".",
"Data",
",",
"r",
".",
"Operation",
".",
"TruncationToken",
")",
"\n",
"if",
"len",
"(",
"tr",
")",
"==",
"0",
"{",
"return",
"nil",
"\n",
"}",
"\n\n",
"switch",
"v",
":=",
"tr",
"[",
"0",
"]",
".",
"(",
"type",
")",
"{",
"case",
"*",
"bool",
":",
"if",
"!",
"aws",
".",
"BoolValue",
"(",
"v",
")",
"{",
"return",
"nil",
"\n",
"}",
"\n",
"case",
"bool",
":",
"if",
"v",
"==",
"false",
"{",
"return",
"nil",
"\n",
"}",
"\n",
"}",
"\n",
"}",
"\n\n",
"tokens",
":=",
"[",
"]",
"interface",
"{",
"}",
"{",
"}",
"\n",
"tokenAdded",
":=",
"false",
"\n",
"for",
"_",
",",
"outToken",
":=",
"range",
"r",
".",
"Operation",
".",
"OutputTokens",
"{",
"vs",
",",
"_",
":=",
"awsutil",
".",
"ValuesAtPath",
"(",
"r",
".",
"Data",
",",
"outToken",
")",
"\n",
"if",
"len",
"(",
"vs",
")",
"==",
"0",
"{",
"tokens",
"=",
"append",
"(",
"tokens",
",",
"nil",
")",
"\n",
"continue",
"\n",
"}",
"\n",
"v",
":=",
"vs",
"[",
"0",
"]",
"\n\n",
"switch",
"tv",
":=",
"v",
".",
"(",
"type",
")",
"{",
"case",
"*",
"string",
":",
"if",
"len",
"(",
"aws",
".",
"StringValue",
"(",
"tv",
")",
")",
"==",
"0",
"{",
"tokens",
"=",
"append",
"(",
"tokens",
",",
"nil",
")",
"\n",
"continue",
"\n",
"}",
"\n",
"case",
"string",
":",
"if",
"len",
"(",
"tv",
")",
"==",
"0",
"{",
"tokens",
"=",
"append",
"(",
"tokens",
",",
"nil",
")",
"\n",
"continue",
"\n",
"}",
"\n",
"}",
"\n\n",
"tokenAdded",
"=",
"true",
"\n",
"tokens",
"=",
"append",
"(",
"tokens",
",",
"v",
")",
"\n",
"}",
"\n",
"if",
"!",
"tokenAdded",
"{",
"return",
"nil",
"\n",
"}",
"\n\n",
"return",
"tokens",
"\n",
"}"
] |
// nextPageTokens returns the tokens to use when asking for the next page of data.
|
[
"nextPageTokens",
"returns",
"the",
"tokens",
"to",
"use",
"when",
"asking",
"for",
"the",
"next",
"page",
"of",
"data",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/aws/request/request_pagination.go#L133-L186
|
165,903 |
aws/aws-sdk-go
|
aws/request/request_pagination.go
|
logDeprecatedf
|
func logDeprecatedf(logger aws.Logger, flag *int32, msg string) {
if logger == nil {
return
}
if atomic.CompareAndSwapInt32(flag, 0, 1) {
logger.Log(msg)
}
}
|
go
|
func logDeprecatedf(logger aws.Logger, flag *int32, msg string) {
if logger == nil {
return
}
if atomic.CompareAndSwapInt32(flag, 0, 1) {
logger.Log(msg)
}
}
|
[
"func",
"logDeprecatedf",
"(",
"logger",
"aws",
".",
"Logger",
",",
"flag",
"*",
"int32",
",",
"msg",
"string",
")",
"{",
"if",
"logger",
"==",
"nil",
"{",
"return",
"\n",
"}",
"\n",
"if",
"atomic",
".",
"CompareAndSwapInt32",
"(",
"flag",
",",
"0",
",",
"1",
")",
"{",
"logger",
".",
"Log",
"(",
"msg",
")",
"\n",
"}",
"\n",
"}"
] |
// Ensure a deprecated item is only logged once instead of each time its used.
|
[
"Ensure",
"a",
"deprecated",
"item",
"is",
"only",
"logged",
"once",
"instead",
"of",
"each",
"time",
"its",
"used",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/aws/request/request_pagination.go#L189-L196
|
165,904 |
aws/aws-sdk-go
|
aws/request/request_pagination.go
|
HasNextPage
|
func (r *Request) HasNextPage() bool {
logDeprecatedf(r.Config.Logger, &logDeprecatedHasNextPage,
"Request.HasNextPage deprecated. Use Pagination type for configurable pagination of API operations")
return len(r.nextPageTokens()) > 0
}
|
go
|
func (r *Request) HasNextPage() bool {
logDeprecatedf(r.Config.Logger, &logDeprecatedHasNextPage,
"Request.HasNextPage deprecated. Use Pagination type for configurable pagination of API operations")
return len(r.nextPageTokens()) > 0
}
|
[
"func",
"(",
"r",
"*",
"Request",
")",
"HasNextPage",
"(",
")",
"bool",
"{",
"logDeprecatedf",
"(",
"r",
".",
"Config",
".",
"Logger",
",",
"&",
"logDeprecatedHasNextPage",
",",
"\"",
"\"",
")",
"\n\n",
"return",
"len",
"(",
"r",
".",
"nextPageTokens",
"(",
")",
")",
">",
"0",
"\n",
"}"
] |
// HasNextPage returns true if this request has more pages of data available.
//
// Deprecated Use Pagination type for configurable pagination of API operations
|
[
"HasNextPage",
"returns",
"true",
"if",
"this",
"request",
"has",
"more",
"pages",
"of",
"data",
"available",
".",
"Deprecated",
"Use",
"Pagination",
"type",
"for",
"configurable",
"pagination",
"of",
"API",
"operations"
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/aws/request/request_pagination.go#L207-L212
|
165,905 |
aws/aws-sdk-go
|
service/comprehendmedical/api.go
|
SetRelationshipScore
|
func (s *Attribute) SetRelationshipScore(v float64) *Attribute {
s.RelationshipScore = &v
return s
}
|
go
|
func (s *Attribute) SetRelationshipScore(v float64) *Attribute {
s.RelationshipScore = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"Attribute",
")",
"SetRelationshipScore",
"(",
"v",
"float64",
")",
"*",
"Attribute",
"{",
"s",
".",
"RelationshipScore",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetRelationshipScore sets the RelationshipScore field's value.
|
[
"SetRelationshipScore",
"sets",
"the",
"RelationshipScore",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/comprehendmedical/api.go#L280-L283
|
165,906 |
aws/aws-sdk-go
|
service/comprehendmedical/api.go
|
SetUnmappedAttributes
|
func (s *DetectEntitiesOutput) SetUnmappedAttributes(v []*UnmappedAttribute) *DetectEntitiesOutput {
s.UnmappedAttributes = v
return s
}
|
go
|
func (s *DetectEntitiesOutput) SetUnmappedAttributes(v []*UnmappedAttribute) *DetectEntitiesOutput {
s.UnmappedAttributes = v
return s
}
|
[
"func",
"(",
"s",
"*",
"DetectEntitiesOutput",
")",
"SetUnmappedAttributes",
"(",
"v",
"[",
"]",
"*",
"UnmappedAttribute",
")",
"*",
"DetectEntitiesOutput",
"{",
"s",
".",
"UnmappedAttributes",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetUnmappedAttributes sets the UnmappedAttributes field's value.
|
[
"SetUnmappedAttributes",
"sets",
"the",
"UnmappedAttributes",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/comprehendmedical/api.go#L395-L398
|
165,907 |
aws/aws-sdk-go
|
service/dynamodb/waiters.go
|
WaitUntilTableExists
|
func (c *DynamoDB) WaitUntilTableExists(input *DescribeTableInput) error {
return c.WaitUntilTableExistsWithContext(aws.BackgroundContext(), input)
}
|
go
|
func (c *DynamoDB) WaitUntilTableExists(input *DescribeTableInput) error {
return c.WaitUntilTableExistsWithContext(aws.BackgroundContext(), input)
}
|
[
"func",
"(",
"c",
"*",
"DynamoDB",
")",
"WaitUntilTableExists",
"(",
"input",
"*",
"DescribeTableInput",
")",
"error",
"{",
"return",
"c",
".",
"WaitUntilTableExistsWithContext",
"(",
"aws",
".",
"BackgroundContext",
"(",
")",
",",
"input",
")",
"\n",
"}"
] |
// WaitUntilTableExists uses the DynamoDB API operation
// DescribeTable to wait for a condition to be met before returning.
// If the condition is not met within the max attempt window, an error will
// be returned.
|
[
"WaitUntilTableExists",
"uses",
"the",
"DynamoDB",
"API",
"operation",
"DescribeTable",
"to",
"wait",
"for",
"a",
"condition",
"to",
"be",
"met",
"before",
"returning",
".",
"If",
"the",
"condition",
"is",
"not",
"met",
"within",
"the",
"max",
"attempt",
"window",
"an",
"error",
"will",
"be",
"returned",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/dynamodb/waiters.go#L16-L18
|
165,908 |
aws/aws-sdk-go
|
service/dynamodb/waiters.go
|
WaitUntilTableNotExists
|
func (c *DynamoDB) WaitUntilTableNotExists(input *DescribeTableInput) error {
return c.WaitUntilTableNotExistsWithContext(aws.BackgroundContext(), input)
}
|
go
|
func (c *DynamoDB) WaitUntilTableNotExists(input *DescribeTableInput) error {
return c.WaitUntilTableNotExistsWithContext(aws.BackgroundContext(), input)
}
|
[
"func",
"(",
"c",
"*",
"DynamoDB",
")",
"WaitUntilTableNotExists",
"(",
"input",
"*",
"DescribeTableInput",
")",
"error",
"{",
"return",
"c",
".",
"WaitUntilTableNotExistsWithContext",
"(",
"aws",
".",
"BackgroundContext",
"(",
")",
",",
"input",
")",
"\n",
"}"
] |
// WaitUntilTableNotExists uses the DynamoDB API operation
// DescribeTable to wait for a condition to be met before returning.
// If the condition is not met within the max attempt window, an error will
// be returned.
|
[
"WaitUntilTableNotExists",
"uses",
"the",
"DynamoDB",
"API",
"operation",
"DescribeTable",
"to",
"wait",
"for",
"a",
"condition",
"to",
"be",
"met",
"before",
"returning",
".",
"If",
"the",
"condition",
"is",
"not",
"met",
"within",
"the",
"max",
"attempt",
"window",
"an",
"error",
"will",
"be",
"returned",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/dynamodb/waiters.go#L67-L69
|
165,909 |
aws/aws-sdk-go
|
service/workmail/api.go
|
SetAutoAcceptRequests
|
func (s *BookingOptions) SetAutoAcceptRequests(v bool) *BookingOptions {
s.AutoAcceptRequests = &v
return s
}
|
go
|
func (s *BookingOptions) SetAutoAcceptRequests(v bool) *BookingOptions {
s.AutoAcceptRequests = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"BookingOptions",
")",
"SetAutoAcceptRequests",
"(",
"v",
"bool",
")",
"*",
"BookingOptions",
"{",
"s",
".",
"AutoAcceptRequests",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetAutoAcceptRequests sets the AutoAcceptRequests field's value.
|
[
"SetAutoAcceptRequests",
"sets",
"the",
"AutoAcceptRequests",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/workmail/api.go#L3663-L3666
|
165,910 |
aws/aws-sdk-go
|
service/workmail/api.go
|
SetAutoDeclineConflictingRequests
|
func (s *BookingOptions) SetAutoDeclineConflictingRequests(v bool) *BookingOptions {
s.AutoDeclineConflictingRequests = &v
return s
}
|
go
|
func (s *BookingOptions) SetAutoDeclineConflictingRequests(v bool) *BookingOptions {
s.AutoDeclineConflictingRequests = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"BookingOptions",
")",
"SetAutoDeclineConflictingRequests",
"(",
"v",
"bool",
")",
"*",
"BookingOptions",
"{",
"s",
".",
"AutoDeclineConflictingRequests",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetAutoDeclineConflictingRequests sets the AutoDeclineConflictingRequests field's value.
|
[
"SetAutoDeclineConflictingRequests",
"sets",
"the",
"AutoDeclineConflictingRequests",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/workmail/api.go#L3669-L3672
|
165,911 |
aws/aws-sdk-go
|
service/workmail/api.go
|
SetAutoDeclineRecurringRequests
|
func (s *BookingOptions) SetAutoDeclineRecurringRequests(v bool) *BookingOptions {
s.AutoDeclineRecurringRequests = &v
return s
}
|
go
|
func (s *BookingOptions) SetAutoDeclineRecurringRequests(v bool) *BookingOptions {
s.AutoDeclineRecurringRequests = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"BookingOptions",
")",
"SetAutoDeclineRecurringRequests",
"(",
"v",
"bool",
")",
"*",
"BookingOptions",
"{",
"s",
".",
"AutoDeclineRecurringRequests",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetAutoDeclineRecurringRequests sets the AutoDeclineRecurringRequests field's value.
|
[
"SetAutoDeclineRecurringRequests",
"sets",
"the",
"AutoDeclineRecurringRequests",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/workmail/api.go#L3675-L3678
|
165,912 |
aws/aws-sdk-go
|
service/workmail/api.go
|
SetCompletedDate
|
func (s *DescribeOrganizationOutput) SetCompletedDate(v time.Time) *DescribeOrganizationOutput {
s.CompletedDate = &v
return s
}
|
go
|
func (s *DescribeOrganizationOutput) SetCompletedDate(v time.Time) *DescribeOrganizationOutput {
s.CompletedDate = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"DescribeOrganizationOutput",
")",
"SetCompletedDate",
"(",
"v",
"time",
".",
"Time",
")",
"*",
"DescribeOrganizationOutput",
"{",
"s",
".",
"CompletedDate",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetCompletedDate sets the CompletedDate field's value.
|
[
"SetCompletedDate",
"sets",
"the",
"CompletedDate",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/workmail/api.go#L4745-L4748
|
165,913 |
aws/aws-sdk-go
|
service/workmail/api.go
|
SetDefaultMailDomain
|
func (s *DescribeOrganizationOutput) SetDefaultMailDomain(v string) *DescribeOrganizationOutput {
s.DefaultMailDomain = &v
return s
}
|
go
|
func (s *DescribeOrganizationOutput) SetDefaultMailDomain(v string) *DescribeOrganizationOutput {
s.DefaultMailDomain = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"DescribeOrganizationOutput",
")",
"SetDefaultMailDomain",
"(",
"v",
"string",
")",
"*",
"DescribeOrganizationOutput",
"{",
"s",
".",
"DefaultMailDomain",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetDefaultMailDomain sets the DefaultMailDomain field's value.
|
[
"SetDefaultMailDomain",
"sets",
"the",
"DefaultMailDomain",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/workmail/api.go#L4751-L4754
|
165,914 |
aws/aws-sdk-go
|
service/workmail/api.go
|
SetOrganizationSummaries
|
func (s *ListOrganizationsOutput) SetOrganizationSummaries(v []*OrganizationSummary) *ListOrganizationsOutput {
s.OrganizationSummaries = v
return s
}
|
go
|
func (s *ListOrganizationsOutput) SetOrganizationSummaries(v []*OrganizationSummary) *ListOrganizationsOutput {
s.OrganizationSummaries = v
return s
}
|
[
"func",
"(",
"s",
"*",
"ListOrganizationsOutput",
")",
"SetOrganizationSummaries",
"(",
"v",
"[",
"]",
"*",
"OrganizationSummary",
")",
"*",
"ListOrganizationsOutput",
"{",
"s",
".",
"OrganizationSummaries",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetOrganizationSummaries sets the OrganizationSummaries field's value.
|
[
"SetOrganizationSummaries",
"sets",
"the",
"OrganizationSummaries",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/workmail/api.go#L5830-L5833
|
165,915 |
aws/aws-sdk-go
|
service/workmail/api.go
|
SetDelegates
|
func (s *ListResourceDelegatesOutput) SetDelegates(v []*Delegate) *ListResourceDelegatesOutput {
s.Delegates = v
return s
}
|
go
|
func (s *ListResourceDelegatesOutput) SetDelegates(v []*Delegate) *ListResourceDelegatesOutput {
s.Delegates = v
return s
}
|
[
"func",
"(",
"s",
"*",
"ListResourceDelegatesOutput",
")",
"SetDelegates",
"(",
"v",
"[",
"]",
"*",
"Delegate",
")",
"*",
"ListResourceDelegatesOutput",
"{",
"s",
".",
"Delegates",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetDelegates sets the Delegates field's value.
|
[
"SetDelegates",
"sets",
"the",
"Delegates",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/workmail/api.go#L5938-L5941
|
165,916 |
aws/aws-sdk-go
|
service/workmail/api.go
|
SetGranteeType
|
func (s *Permission) SetGranteeType(v string) *Permission {
s.GranteeType = &v
return s
}
|
go
|
func (s *Permission) SetGranteeType(v string) *Permission {
s.GranteeType = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"Permission",
")",
"SetGranteeType",
"(",
"v",
"string",
")",
"*",
"Permission",
"{",
"s",
".",
"GranteeType",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetGranteeType sets the GranteeType field's value.
|
[
"SetGranteeType",
"sets",
"the",
"GranteeType",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/workmail/api.go#L6308-L6311
|
165,917 |
aws/aws-sdk-go
|
service/simpledb/api.go
|
SetAlternateValueEncoding
|
func (s *Attribute) SetAlternateValueEncoding(v string) *Attribute {
s.AlternateValueEncoding = &v
return s
}
|
go
|
func (s *Attribute) SetAlternateValueEncoding(v string) *Attribute {
s.AlternateValueEncoding = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"Attribute",
")",
"SetAlternateValueEncoding",
"(",
"v",
"string",
")",
"*",
"Attribute",
"{",
"s",
".",
"AlternateValueEncoding",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetAlternateValueEncoding sets the AlternateValueEncoding field's value.
|
[
"SetAlternateValueEncoding",
"sets",
"the",
"AlternateValueEncoding",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/simpledb/api.go#L1161-L1164
|
165,918 |
aws/aws-sdk-go
|
service/simpledb/api.go
|
SetAttributeNameCount
|
func (s *DomainMetadataOutput) SetAttributeNameCount(v int64) *DomainMetadataOutput {
s.AttributeNameCount = &v
return s
}
|
go
|
func (s *DomainMetadataOutput) SetAttributeNameCount(v int64) *DomainMetadataOutput {
s.AttributeNameCount = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"DomainMetadataOutput",
")",
"SetAttributeNameCount",
"(",
"v",
"int64",
")",
"*",
"DomainMetadataOutput",
"{",
"s",
".",
"AttributeNameCount",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetAttributeNameCount sets the AttributeNameCount field's value.
|
[
"SetAttributeNameCount",
"sets",
"the",
"AttributeNameCount",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/simpledb/api.go#L1708-L1711
|
165,919 |
aws/aws-sdk-go
|
service/simpledb/api.go
|
SetAttributeNamesSizeBytes
|
func (s *DomainMetadataOutput) SetAttributeNamesSizeBytes(v int64) *DomainMetadataOutput {
s.AttributeNamesSizeBytes = &v
return s
}
|
go
|
func (s *DomainMetadataOutput) SetAttributeNamesSizeBytes(v int64) *DomainMetadataOutput {
s.AttributeNamesSizeBytes = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"DomainMetadataOutput",
")",
"SetAttributeNamesSizeBytes",
"(",
"v",
"int64",
")",
"*",
"DomainMetadataOutput",
"{",
"s",
".",
"AttributeNamesSizeBytes",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetAttributeNamesSizeBytes sets the AttributeNamesSizeBytes field's value.
|
[
"SetAttributeNamesSizeBytes",
"sets",
"the",
"AttributeNamesSizeBytes",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/simpledb/api.go#L1714-L1717
|
165,920 |
aws/aws-sdk-go
|
service/simpledb/api.go
|
SetAttributeValueCount
|
func (s *DomainMetadataOutput) SetAttributeValueCount(v int64) *DomainMetadataOutput {
s.AttributeValueCount = &v
return s
}
|
go
|
func (s *DomainMetadataOutput) SetAttributeValueCount(v int64) *DomainMetadataOutput {
s.AttributeValueCount = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"DomainMetadataOutput",
")",
"SetAttributeValueCount",
"(",
"v",
"int64",
")",
"*",
"DomainMetadataOutput",
"{",
"s",
".",
"AttributeValueCount",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetAttributeValueCount sets the AttributeValueCount field's value.
|
[
"SetAttributeValueCount",
"sets",
"the",
"AttributeValueCount",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/simpledb/api.go#L1720-L1723
|
165,921 |
aws/aws-sdk-go
|
service/simpledb/api.go
|
SetAttributeValuesSizeBytes
|
func (s *DomainMetadataOutput) SetAttributeValuesSizeBytes(v int64) *DomainMetadataOutput {
s.AttributeValuesSizeBytes = &v
return s
}
|
go
|
func (s *DomainMetadataOutput) SetAttributeValuesSizeBytes(v int64) *DomainMetadataOutput {
s.AttributeValuesSizeBytes = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"DomainMetadataOutput",
")",
"SetAttributeValuesSizeBytes",
"(",
"v",
"int64",
")",
"*",
"DomainMetadataOutput",
"{",
"s",
".",
"AttributeValuesSizeBytes",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetAttributeValuesSizeBytes sets the AttributeValuesSizeBytes field's value.
|
[
"SetAttributeValuesSizeBytes",
"sets",
"the",
"AttributeValuesSizeBytes",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/simpledb/api.go#L1726-L1729
|
165,922 |
aws/aws-sdk-go
|
service/simpledb/api.go
|
SetItemNamesSizeBytes
|
func (s *DomainMetadataOutput) SetItemNamesSizeBytes(v int64) *DomainMetadataOutput {
s.ItemNamesSizeBytes = &v
return s
}
|
go
|
func (s *DomainMetadataOutput) SetItemNamesSizeBytes(v int64) *DomainMetadataOutput {
s.ItemNamesSizeBytes = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"DomainMetadataOutput",
")",
"SetItemNamesSizeBytes",
"(",
"v",
"int64",
")",
"*",
"DomainMetadataOutput",
"{",
"s",
".",
"ItemNamesSizeBytes",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetItemNamesSizeBytes sets the ItemNamesSizeBytes field's value.
|
[
"SetItemNamesSizeBytes",
"sets",
"the",
"ItemNamesSizeBytes",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/simpledb/api.go#L1738-L1741
|
165,923 |
aws/aws-sdk-go
|
service/simpledb/api.go
|
SetMaxNumberOfDomains
|
func (s *ListDomainsInput) SetMaxNumberOfDomains(v int64) *ListDomainsInput {
s.MaxNumberOfDomains = &v
return s
}
|
go
|
func (s *ListDomainsInput) SetMaxNumberOfDomains(v int64) *ListDomainsInput {
s.MaxNumberOfDomains = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"ListDomainsInput",
")",
"SetMaxNumberOfDomains",
"(",
"v",
"int64",
")",
"*",
"ListDomainsInput",
"{",
"s",
".",
"MaxNumberOfDomains",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetMaxNumberOfDomains sets the MaxNumberOfDomains field's value.
|
[
"SetMaxNumberOfDomains",
"sets",
"the",
"MaxNumberOfDomains",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/simpledb/api.go#L1910-L1913
|
165,924 |
aws/aws-sdk-go
|
service/simpledb/api.go
|
SetSelectExpression
|
func (s *SelectInput) SetSelectExpression(v string) *SelectInput {
s.SelectExpression = &v
return s
}
|
go
|
func (s *SelectInput) SetSelectExpression(v string) *SelectInput {
s.SelectExpression = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"SelectInput",
")",
"SetSelectExpression",
"(",
"v",
"string",
")",
"*",
"SelectInput",
"{",
"s",
".",
"SelectExpression",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetSelectExpression sets the SelectExpression field's value.
|
[
"SetSelectExpression",
"sets",
"the",
"SelectExpression",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/simpledb/api.go#L2231-L2234
|
165,925 |
aws/aws-sdk-go
|
service/neptune/waiters.go
|
WaitUntilDBInstanceDeleted
|
func (c *Neptune) WaitUntilDBInstanceDeleted(input *DescribeDBInstancesInput) error {
return c.WaitUntilDBInstanceDeletedWithContext(aws.BackgroundContext(), input)
}
|
go
|
func (c *Neptune) WaitUntilDBInstanceDeleted(input *DescribeDBInstancesInput) error {
return c.WaitUntilDBInstanceDeletedWithContext(aws.BackgroundContext(), input)
}
|
[
"func",
"(",
"c",
"*",
"Neptune",
")",
"WaitUntilDBInstanceDeleted",
"(",
"input",
"*",
"DescribeDBInstancesInput",
")",
"error",
"{",
"return",
"c",
".",
"WaitUntilDBInstanceDeletedWithContext",
"(",
"aws",
".",
"BackgroundContext",
"(",
")",
",",
"input",
")",
"\n",
"}"
] |
// WaitUntilDBInstanceDeleted uses the Amazon Neptune API operation
// DescribeDBInstances to wait for a condition to be met before returning.
// If the condition is not met within the max attempt window, an error will
// be returned.
|
[
"WaitUntilDBInstanceDeleted",
"uses",
"the",
"Amazon",
"Neptune",
"API",
"operation",
"DescribeDBInstances",
"to",
"wait",
"for",
"a",
"condition",
"to",
"be",
"met",
"before",
"returning",
".",
"If",
"the",
"condition",
"is",
"not",
"met",
"within",
"the",
"max",
"attempt",
"window",
"an",
"error",
"will",
"be",
"returned",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/neptune/waiters.go#L87-L89
|
165,926 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetLastUsedDate
|
func (s *AccessKeyLastUsed) SetLastUsedDate(v time.Time) *AccessKeyLastUsed {
s.LastUsedDate = &v
return s
}
|
go
|
func (s *AccessKeyLastUsed) SetLastUsedDate(v time.Time) *AccessKeyLastUsed {
s.LastUsedDate = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"AccessKeyLastUsed",
")",
"SetLastUsedDate",
"(",
"v",
"time",
".",
"Time",
")",
"*",
"AccessKeyLastUsed",
"{",
"s",
".",
"LastUsedDate",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetLastUsedDate sets the LastUsedDate field's value.
|
[
"SetLastUsedDate",
"sets",
"the",
"LastUsedDate",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L15179-L15182
|
165,927 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetPermissionsBoundaryArn
|
func (s *AttachedPermissionsBoundary) SetPermissionsBoundaryArn(v string) *AttachedPermissionsBoundary {
s.PermissionsBoundaryArn = &v
return s
}
|
go
|
func (s *AttachedPermissionsBoundary) SetPermissionsBoundaryArn(v string) *AttachedPermissionsBoundary {
s.PermissionsBoundaryArn = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"AttachedPermissionsBoundary",
")",
"SetPermissionsBoundaryArn",
"(",
"v",
"string",
")",
"*",
"AttachedPermissionsBoundary",
"{",
"s",
".",
"PermissionsBoundaryArn",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetPermissionsBoundaryArn sets the PermissionsBoundaryArn field's value.
|
[
"SetPermissionsBoundaryArn",
"sets",
"the",
"PermissionsBoundaryArn",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L15757-L15760
|
165,928 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetPermissionsBoundaryType
|
func (s *AttachedPermissionsBoundary) SetPermissionsBoundaryType(v string) *AttachedPermissionsBoundary {
s.PermissionsBoundaryType = &v
return s
}
|
go
|
func (s *AttachedPermissionsBoundary) SetPermissionsBoundaryType(v string) *AttachedPermissionsBoundary {
s.PermissionsBoundaryType = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"AttachedPermissionsBoundary",
")",
"SetPermissionsBoundaryType",
"(",
"v",
"string",
")",
"*",
"AttachedPermissionsBoundary",
"{",
"s",
".",
"PermissionsBoundaryType",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetPermissionsBoundaryType sets the PermissionsBoundaryType field's value.
|
[
"SetPermissionsBoundaryType",
"sets",
"the",
"PermissionsBoundaryType",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L15763-L15766
|
165,929 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetOldPassword
|
func (s *ChangePasswordInput) SetOldPassword(v string) *ChangePasswordInput {
s.OldPassword = &v
return s
}
|
go
|
func (s *ChangePasswordInput) SetOldPassword(v string) *ChangePasswordInput {
s.OldPassword = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"ChangePasswordInput",
")",
"SetOldPassword",
"(",
"v",
"string",
")",
"*",
"ChangePasswordInput",
"{",
"s",
".",
"OldPassword",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetOldPassword sets the OldPassword field's value.
|
[
"SetOldPassword",
"sets",
"the",
"OldPassword",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L15877-L15880
|
165,930 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetContextKeyName
|
func (s *ContextEntry) SetContextKeyName(v string) *ContextEntry {
s.ContextKeyName = &v
return s
}
|
go
|
func (s *ContextEntry) SetContextKeyName(v string) *ContextEntry {
s.ContextKeyName = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"ContextEntry",
")",
"SetContextKeyName",
"(",
"v",
"string",
")",
"*",
"ContextEntry",
"{",
"s",
".",
"ContextKeyName",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetContextKeyName sets the ContextKeyName field's value.
|
[
"SetContextKeyName",
"sets",
"the",
"ContextKeyName",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L15944-L15947
|
165,931 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetContextKeyType
|
func (s *ContextEntry) SetContextKeyType(v string) *ContextEntry {
s.ContextKeyType = &v
return s
}
|
go
|
func (s *ContextEntry) SetContextKeyType(v string) *ContextEntry {
s.ContextKeyType = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"ContextEntry",
")",
"SetContextKeyType",
"(",
"v",
"string",
")",
"*",
"ContextEntry",
"{",
"s",
".",
"ContextKeyType",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetContextKeyType sets the ContextKeyType field's value.
|
[
"SetContextKeyType",
"sets",
"the",
"ContextKeyType",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L15950-L15953
|
165,932 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetContextKeyValues
|
func (s *ContextEntry) SetContextKeyValues(v []*string) *ContextEntry {
s.ContextKeyValues = v
return s
}
|
go
|
func (s *ContextEntry) SetContextKeyValues(v []*string) *ContextEntry {
s.ContextKeyValues = v
return s
}
|
[
"func",
"(",
"s",
"*",
"ContextEntry",
")",
"SetContextKeyValues",
"(",
"v",
"[",
"]",
"*",
"string",
")",
"*",
"ContextEntry",
"{",
"s",
".",
"ContextKeyValues",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetContextKeyValues sets the ContextKeyValues field's value.
|
[
"SetContextKeyValues",
"sets",
"the",
"ContextKeyValues",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L15956-L15959
|
165,933 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetAccessKey
|
func (s *CreateAccessKeyOutput) SetAccessKey(v *AccessKey) *CreateAccessKeyOutput {
s.AccessKey = v
return s
}
|
go
|
func (s *CreateAccessKeyOutput) SetAccessKey(v *AccessKey) *CreateAccessKeyOutput {
s.AccessKey = v
return s
}
|
[
"func",
"(",
"s",
"*",
"CreateAccessKeyOutput",
")",
"SetAccessKey",
"(",
"v",
"*",
"AccessKey",
")",
"*",
"CreateAccessKeyOutput",
"{",
"s",
".",
"AccessKey",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetAccessKey sets the AccessKey field's value.
|
[
"SetAccessKey",
"sets",
"the",
"AccessKey",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L16022-L16025
|
165,934 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetSetAsDefault
|
func (s *CreatePolicyVersionInput) SetSetAsDefault(v bool) *CreatePolicyVersionInput {
s.SetAsDefault = &v
return s
}
|
go
|
func (s *CreatePolicyVersionInput) SetSetAsDefault(v bool) *CreatePolicyVersionInput {
s.SetAsDefault = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"CreatePolicyVersionInput",
")",
"SetSetAsDefault",
"(",
"v",
"bool",
")",
"*",
"CreatePolicyVersionInput",
"{",
"s",
".",
"SetAsDefault",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetSetAsDefault sets the SetAsDefault field's value.
|
[
"SetSetAsDefault",
"sets",
"the",
"SetAsDefault",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L16735-L16738
|
165,935 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetAWSServiceName
|
func (s *CreateServiceLinkedRoleInput) SetAWSServiceName(v string) *CreateServiceLinkedRoleInput {
s.AWSServiceName = &v
return s
}
|
go
|
func (s *CreateServiceLinkedRoleInput) SetAWSServiceName(v string) *CreateServiceLinkedRoleInput {
s.AWSServiceName = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"CreateServiceLinkedRoleInput",
")",
"SetAWSServiceName",
"(",
"v",
"string",
")",
"*",
"CreateServiceLinkedRoleInput",
"{",
"s",
".",
"AWSServiceName",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetAWSServiceName sets the AWSServiceName field's value.
|
[
"SetAWSServiceName",
"sets",
"the",
"AWSServiceName",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L17116-L17119
|
165,936 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetCustomSuffix
|
func (s *CreateServiceLinkedRoleInput) SetCustomSuffix(v string) *CreateServiceLinkedRoleInput {
s.CustomSuffix = &v
return s
}
|
go
|
func (s *CreateServiceLinkedRoleInput) SetCustomSuffix(v string) *CreateServiceLinkedRoleInput {
s.CustomSuffix = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"CreateServiceLinkedRoleInput",
")",
"SetCustomSuffix",
"(",
"v",
"string",
")",
"*",
"CreateServiceLinkedRoleInput",
"{",
"s",
".",
"CustomSuffix",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetCustomSuffix sets the CustomSuffix field's value.
|
[
"SetCustomSuffix",
"sets",
"the",
"CustomSuffix",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L17122-L17125
|
165,937 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetVirtualMFADeviceName
|
func (s *CreateVirtualMFADeviceInput) SetVirtualMFADeviceName(v string) *CreateVirtualMFADeviceInput {
s.VirtualMFADeviceName = &v
return s
}
|
go
|
func (s *CreateVirtualMFADeviceInput) SetVirtualMFADeviceName(v string) *CreateVirtualMFADeviceInput {
s.VirtualMFADeviceName = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"CreateVirtualMFADeviceInput",
")",
"SetVirtualMFADeviceName",
"(",
"v",
"string",
")",
"*",
"CreateVirtualMFADeviceInput",
"{",
"s",
".",
"VirtualMFADeviceName",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetVirtualMFADeviceName sets the VirtualMFADeviceName field's value.
|
[
"SetVirtualMFADeviceName",
"sets",
"the",
"VirtualMFADeviceName",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L17444-L17447
|
165,938 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetVirtualMFADevice
|
func (s *CreateVirtualMFADeviceOutput) SetVirtualMFADevice(v *VirtualMFADevice) *CreateVirtualMFADeviceOutput {
s.VirtualMFADevice = v
return s
}
|
go
|
func (s *CreateVirtualMFADeviceOutput) SetVirtualMFADevice(v *VirtualMFADevice) *CreateVirtualMFADeviceOutput {
s.VirtualMFADevice = v
return s
}
|
[
"func",
"(",
"s",
"*",
"CreateVirtualMFADeviceOutput",
")",
"SetVirtualMFADevice",
"(",
"v",
"*",
"VirtualMFADevice",
")",
"*",
"CreateVirtualMFADeviceOutput",
"{",
"s",
".",
"VirtualMFADevice",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetVirtualMFADevice sets the VirtualMFADevice field's value.
|
[
"SetVirtualMFADevice",
"sets",
"the",
"VirtualMFADevice",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L17470-L17473
|
165,939 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetRoleUsageList
|
func (s *DeletionTaskFailureReasonType) SetRoleUsageList(v []*RoleUsageType) *DeletionTaskFailureReasonType {
s.RoleUsageList = v
return s
}
|
go
|
func (s *DeletionTaskFailureReasonType) SetRoleUsageList(v []*RoleUsageType) *DeletionTaskFailureReasonType {
s.RoleUsageList = v
return s
}
|
[
"func",
"(",
"s",
"*",
"DeletionTaskFailureReasonType",
")",
"SetRoleUsageList",
"(",
"v",
"[",
"]",
"*",
"RoleUsageType",
")",
"*",
"DeletionTaskFailureReasonType",
"{",
"s",
".",
"RoleUsageList",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetRoleUsageList sets the RoleUsageList field's value.
|
[
"SetRoleUsageList",
"sets",
"the",
"RoleUsageList",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L19079-L19082
|
165,940 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetEntityInfo
|
func (s *EntityDetails) SetEntityInfo(v *EntityInfo) *EntityDetails {
s.EntityInfo = v
return s
}
|
go
|
func (s *EntityDetails) SetEntityInfo(v *EntityInfo) *EntityDetails {
s.EntityInfo = v
return s
}
|
[
"func",
"(",
"s",
"*",
"EntityDetails",
")",
"SetEntityInfo",
"(",
"v",
"*",
"EntityInfo",
")",
"*",
"EntityDetails",
"{",
"s",
".",
"EntityInfo",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetEntityInfo sets the EntityInfo field's value.
|
[
"SetEntityInfo",
"sets",
"the",
"EntityInfo",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L19490-L19493
|
165,941 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetEvalActionName
|
func (s *EvaluationResult) SetEvalActionName(v string) *EvaluationResult {
s.EvalActionName = &v
return s
}
|
go
|
func (s *EvaluationResult) SetEvalActionName(v string) *EvaluationResult {
s.EvalActionName = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"EvaluationResult",
")",
"SetEvalActionName",
"(",
"v",
"string",
")",
"*",
"EvaluationResult",
"{",
"s",
".",
"EvalActionName",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetEvalActionName sets the EvalActionName field's value.
|
[
"SetEvalActionName",
"sets",
"the",
"EvalActionName",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L19682-L19685
|
165,942 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetEvalDecision
|
func (s *EvaluationResult) SetEvalDecision(v string) *EvaluationResult {
s.EvalDecision = &v
return s
}
|
go
|
func (s *EvaluationResult) SetEvalDecision(v string) *EvaluationResult {
s.EvalDecision = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"EvaluationResult",
")",
"SetEvalDecision",
"(",
"v",
"string",
")",
"*",
"EvaluationResult",
"{",
"s",
".",
"EvalDecision",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetEvalDecision sets the EvalDecision field's value.
|
[
"SetEvalDecision",
"sets",
"the",
"EvalDecision",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L19688-L19691
|
165,943 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetOrganizationsDecisionDetail
|
func (s *EvaluationResult) SetOrganizationsDecisionDetail(v *OrganizationsDecisionDetail) *EvaluationResult {
s.OrganizationsDecisionDetail = v
return s
}
|
go
|
func (s *EvaluationResult) SetOrganizationsDecisionDetail(v *OrganizationsDecisionDetail) *EvaluationResult {
s.OrganizationsDecisionDetail = v
return s
}
|
[
"func",
"(",
"s",
"*",
"EvaluationResult",
")",
"SetOrganizationsDecisionDetail",
"(",
"v",
"*",
"OrganizationsDecisionDetail",
")",
"*",
"EvaluationResult",
"{",
"s",
".",
"OrganizationsDecisionDetail",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetOrganizationsDecisionDetail sets the OrganizationsDecisionDetail field's value.
|
[
"SetOrganizationsDecisionDetail",
"sets",
"the",
"OrganizationsDecisionDetail",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L19718-L19721
|
165,944 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetResourceSpecificResults
|
func (s *EvaluationResult) SetResourceSpecificResults(v []*ResourceSpecificResult) *EvaluationResult {
s.ResourceSpecificResults = v
return s
}
|
go
|
func (s *EvaluationResult) SetResourceSpecificResults(v []*ResourceSpecificResult) *EvaluationResult {
s.ResourceSpecificResults = v
return s
}
|
[
"func",
"(",
"s",
"*",
"EvaluationResult",
")",
"SetResourceSpecificResults",
"(",
"v",
"[",
"]",
"*",
"ResourceSpecificResult",
")",
"*",
"EvaluationResult",
"{",
"s",
".",
"ResourceSpecificResults",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetResourceSpecificResults sets the ResourceSpecificResults field's value.
|
[
"SetResourceSpecificResults",
"sets",
"the",
"ResourceSpecificResults",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L19724-L19727
|
165,945 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetAccessKeyLastUsed
|
func (s *GetAccessKeyLastUsedOutput) SetAccessKeyLastUsed(v *AccessKeyLastUsed) *GetAccessKeyLastUsedOutput {
s.AccessKeyLastUsed = v
return s
}
|
go
|
func (s *GetAccessKeyLastUsedOutput) SetAccessKeyLastUsed(v *AccessKeyLastUsed) *GetAccessKeyLastUsedOutput {
s.AccessKeyLastUsed = v
return s
}
|
[
"func",
"(",
"s",
"*",
"GetAccessKeyLastUsedOutput",
")",
"SetAccessKeyLastUsed",
"(",
"v",
"*",
"AccessKeyLastUsed",
")",
"*",
"GetAccessKeyLastUsedOutput",
"{",
"s",
".",
"AccessKeyLastUsed",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetAccessKeyLastUsed sets the AccessKeyLastUsed field's value.
|
[
"SetAccessKeyLastUsed",
"sets",
"the",
"AccessKeyLastUsed",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L19912-L19915
|
165,946 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetGroupDetailList
|
func (s *GetAccountAuthorizationDetailsOutput) SetGroupDetailList(v []*GroupDetail) *GetAccountAuthorizationDetailsOutput {
s.GroupDetailList = v
return s
}
|
go
|
func (s *GetAccountAuthorizationDetailsOutput) SetGroupDetailList(v []*GroupDetail) *GetAccountAuthorizationDetailsOutput {
s.GroupDetailList = v
return s
}
|
[
"func",
"(",
"s",
"*",
"GetAccountAuthorizationDetailsOutput",
")",
"SetGroupDetailList",
"(",
"v",
"[",
"]",
"*",
"GroupDetail",
")",
"*",
"GetAccountAuthorizationDetailsOutput",
"{",
"s",
".",
"GroupDetailList",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetGroupDetailList sets the GroupDetailList field's value.
|
[
"SetGroupDetailList",
"sets",
"the",
"GroupDetailList",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L20037-L20040
|
165,947 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetRoleDetailList
|
func (s *GetAccountAuthorizationDetailsOutput) SetRoleDetailList(v []*RoleDetail) *GetAccountAuthorizationDetailsOutput {
s.RoleDetailList = v
return s
}
|
go
|
func (s *GetAccountAuthorizationDetailsOutput) SetRoleDetailList(v []*RoleDetail) *GetAccountAuthorizationDetailsOutput {
s.RoleDetailList = v
return s
}
|
[
"func",
"(",
"s",
"*",
"GetAccountAuthorizationDetailsOutput",
")",
"SetRoleDetailList",
"(",
"v",
"[",
"]",
"*",
"RoleDetail",
")",
"*",
"GetAccountAuthorizationDetailsOutput",
"{",
"s",
".",
"RoleDetailList",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetRoleDetailList sets the RoleDetailList field's value.
|
[
"SetRoleDetailList",
"sets",
"the",
"RoleDetailList",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L20061-L20064
|
165,948 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetUserDetailList
|
func (s *GetAccountAuthorizationDetailsOutput) SetUserDetailList(v []*UserDetail) *GetAccountAuthorizationDetailsOutput {
s.UserDetailList = v
return s
}
|
go
|
func (s *GetAccountAuthorizationDetailsOutput) SetUserDetailList(v []*UserDetail) *GetAccountAuthorizationDetailsOutput {
s.UserDetailList = v
return s
}
|
[
"func",
"(",
"s",
"*",
"GetAccountAuthorizationDetailsOutput",
")",
"SetUserDetailList",
"(",
"v",
"[",
"]",
"*",
"UserDetail",
")",
"*",
"GetAccountAuthorizationDetailsOutput",
"{",
"s",
".",
"UserDetailList",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetUserDetailList sets the UserDetailList field's value.
|
[
"SetUserDetailList",
"sets",
"the",
"UserDetailList",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L20067-L20070
|
165,949 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetSummaryMap
|
func (s *GetAccountSummaryOutput) SetSummaryMap(v map[string]*int64) *GetAccountSummaryOutput {
s.SummaryMap = v
return s
}
|
go
|
func (s *GetAccountSummaryOutput) SetSummaryMap(v map[string]*int64) *GetAccountSummaryOutput {
s.SummaryMap = v
return s
}
|
[
"func",
"(",
"s",
"*",
"GetAccountSummaryOutput",
")",
"SetSummaryMap",
"(",
"v",
"map",
"[",
"string",
"]",
"*",
"int64",
")",
"*",
"GetAccountSummaryOutput",
"{",
"s",
".",
"SummaryMap",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetSummaryMap sets the SummaryMap field's value.
|
[
"SetSummaryMap",
"sets",
"the",
"SummaryMap",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L20146-L20149
|
165,950 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetContextKeyNames
|
func (s *GetContextKeysForPolicyResponse) SetContextKeyNames(v []*string) *GetContextKeysForPolicyResponse {
s.ContextKeyNames = v
return s
}
|
go
|
func (s *GetContextKeysForPolicyResponse) SetContextKeyNames(v []*string) *GetContextKeysForPolicyResponse {
s.ContextKeyNames = v
return s
}
|
[
"func",
"(",
"s",
"*",
"GetContextKeysForPolicyResponse",
")",
"SetContextKeyNames",
"(",
"v",
"[",
"]",
"*",
"string",
")",
"*",
"GetContextKeysForPolicyResponse",
"{",
"s",
".",
"ContextKeyNames",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetContextKeyNames sets the ContextKeyNames field's value.
|
[
"SetContextKeyNames",
"sets",
"the",
"ContextKeyNames",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L20223-L20226
|
165,951 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetGeneratedTime
|
func (s *GetCredentialReportOutput) SetGeneratedTime(v time.Time) *GetCredentialReportOutput {
s.GeneratedTime = &v
return s
}
|
go
|
func (s *GetCredentialReportOutput) SetGeneratedTime(v time.Time) *GetCredentialReportOutput {
s.GeneratedTime = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"GetCredentialReportOutput",
")",
"SetGeneratedTime",
"(",
"v",
"time",
".",
"Time",
")",
"*",
"GetCredentialReportOutput",
"{",
"s",
".",
"GeneratedTime",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetGeneratedTime sets the GeneratedTime field's value.
|
[
"SetGeneratedTime",
"sets",
"the",
"GeneratedTime",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L20350-L20353
|
165,952 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetReportFormat
|
func (s *GetCredentialReportOutput) SetReportFormat(v string) *GetCredentialReportOutput {
s.ReportFormat = &v
return s
}
|
go
|
func (s *GetCredentialReportOutput) SetReportFormat(v string) *GetCredentialReportOutput {
s.ReportFormat = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"GetCredentialReportOutput",
")",
"SetReportFormat",
"(",
"v",
"string",
")",
"*",
"GetCredentialReportOutput",
"{",
"s",
".",
"ReportFormat",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetReportFormat sets the ReportFormat field's value.
|
[
"SetReportFormat",
"sets",
"the",
"ReportFormat",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L20356-L20359
|
165,953 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetServerCertificate
|
func (s *GetServerCertificateOutput) SetServerCertificate(v *ServerCertificate) *GetServerCertificateOutput {
s.ServerCertificate = v
return s
}
|
go
|
func (s *GetServerCertificateOutput) SetServerCertificate(v *ServerCertificate) *GetServerCertificateOutput {
s.ServerCertificate = v
return s
}
|
[
"func",
"(",
"s",
"*",
"GetServerCertificateOutput",
")",
"SetServerCertificate",
"(",
"v",
"*",
"ServerCertificate",
")",
"*",
"GetServerCertificateOutput",
"{",
"s",
".",
"ServerCertificate",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetServerCertificate sets the ServerCertificate field's value.
|
[
"SetServerCertificate",
"sets",
"the",
"ServerCertificate",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L21464-L21467
|
165,954 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetServicesLastAccessed
|
func (s *GetServiceLastAccessedDetailsOutput) SetServicesLastAccessed(v []*ServiceLastAccessed) *GetServiceLastAccessedDetailsOutput {
s.ServicesLastAccessed = v
return s
}
|
go
|
func (s *GetServiceLastAccessedDetailsOutput) SetServicesLastAccessed(v []*ServiceLastAccessed) *GetServiceLastAccessedDetailsOutput {
s.ServicesLastAccessed = v
return s
}
|
[
"func",
"(",
"s",
"*",
"GetServiceLastAccessedDetailsOutput",
")",
"SetServicesLastAccessed",
"(",
"v",
"[",
"]",
"*",
"ServiceLastAccessed",
")",
"*",
"GetServiceLastAccessedDetailsOutput",
"{",
"s",
".",
"ServicesLastAccessed",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetServicesLastAccessed sets the ServicesLastAccessed field's value.
|
[
"SetServicesLastAccessed",
"sets",
"the",
"ServicesLastAccessed",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L21636-L21639
|
165,955 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetEntityDetailsList
|
func (s *GetServiceLastAccessedDetailsWithEntitiesOutput) SetEntityDetailsList(v []*EntityDetails) *GetServiceLastAccessedDetailsWithEntitiesOutput {
s.EntityDetailsList = v
return s
}
|
go
|
func (s *GetServiceLastAccessedDetailsWithEntitiesOutput) SetEntityDetailsList(v []*EntityDetails) *GetServiceLastAccessedDetailsWithEntitiesOutput {
s.EntityDetailsList = v
return s
}
|
[
"func",
"(",
"s",
"*",
"GetServiceLastAccessedDetailsWithEntitiesOutput",
")",
"SetEntityDetailsList",
"(",
"v",
"[",
"]",
"*",
"EntityDetails",
")",
"*",
"GetServiceLastAccessedDetailsWithEntitiesOutput",
"{",
"s",
".",
"EntityDetailsList",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetEntityDetailsList sets the EntityDetailsList field's value.
|
[
"SetEntityDetailsList",
"sets",
"the",
"EntityDetailsList",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L21798-L21801
|
165,956 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetGroupPolicyList
|
func (s *GroupDetail) SetGroupPolicyList(v []*PolicyDetail) *GroupDetail {
s.GroupPolicyList = v
return s
}
|
go
|
func (s *GroupDetail) SetGroupPolicyList(v []*PolicyDetail) *GroupDetail {
s.GroupPolicyList = v
return s
}
|
[
"func",
"(",
"s",
"*",
"GroupDetail",
")",
"SetGroupPolicyList",
"(",
"v",
"[",
"]",
"*",
"PolicyDetail",
")",
"*",
"GroupDetail",
"{",
"s",
".",
"GroupPolicyList",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetGroupPolicyList sets the GroupPolicyList field's value.
|
[
"SetGroupPolicyList",
"sets",
"the",
"GroupPolicyList",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L22277-L22280
|
165,957 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetInstanceProfileId
|
func (s *InstanceProfile) SetInstanceProfileId(v string) *InstanceProfile {
s.InstanceProfileId = &v
return s
}
|
go
|
func (s *InstanceProfile) SetInstanceProfileId(v string) *InstanceProfile {
s.InstanceProfileId = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"InstanceProfile",
")",
"SetInstanceProfileId",
"(",
"v",
"string",
")",
"*",
"InstanceProfile",
"{",
"s",
".",
"InstanceProfileId",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetInstanceProfileId sets the InstanceProfileId field's value.
|
[
"SetInstanceProfileId",
"sets",
"the",
"InstanceProfileId",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L22363-L22366
|
165,958 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetAccessKeyMetadata
|
func (s *ListAccessKeysOutput) SetAccessKeyMetadata(v []*AccessKeyMetadata) *ListAccessKeysOutput {
s.AccessKeyMetadata = v
return s
}
|
go
|
func (s *ListAccessKeysOutput) SetAccessKeyMetadata(v []*AccessKeyMetadata) *ListAccessKeysOutput {
s.AccessKeyMetadata = v
return s
}
|
[
"func",
"(",
"s",
"*",
"ListAccessKeysOutput",
")",
"SetAccessKeyMetadata",
"(",
"v",
"[",
"]",
"*",
"AccessKeyMetadata",
")",
"*",
"ListAccessKeysOutput",
"{",
"s",
".",
"AccessKeyMetadata",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetAccessKeyMetadata sets the AccessKeyMetadata field's value.
|
[
"SetAccessKeyMetadata",
"sets",
"the",
"AccessKeyMetadata",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L22494-L22497
|
165,959 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetAccountAliases
|
func (s *ListAccountAliasesOutput) SetAccountAliases(v []*string) *ListAccountAliasesOutput {
s.AccountAliases = v
return s
}
|
go
|
func (s *ListAccountAliasesOutput) SetAccountAliases(v []*string) *ListAccountAliasesOutput {
s.AccountAliases = v
return s
}
|
[
"func",
"(",
"s",
"*",
"ListAccountAliasesOutput",
")",
"SetAccountAliases",
"(",
"v",
"[",
"]",
"*",
"string",
")",
"*",
"ListAccountAliasesOutput",
"{",
"s",
".",
"AccountAliases",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetAccountAliases sets the AccountAliases field's value.
|
[
"SetAccountAliases",
"sets",
"the",
"AccountAliases",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L22604-L22607
|
165,960 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetEntityFilter
|
func (s *ListEntitiesForPolicyInput) SetEntityFilter(v string) *ListEntitiesForPolicyInput {
s.EntityFilter = &v
return s
}
|
go
|
func (s *ListEntitiesForPolicyInput) SetEntityFilter(v string) *ListEntitiesForPolicyInput {
s.EntityFilter = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"ListEntitiesForPolicyInput",
")",
"SetEntityFilter",
"(",
"v",
"string",
")",
"*",
"ListEntitiesForPolicyInput",
"{",
"s",
".",
"EntityFilter",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetEntityFilter sets the EntityFilter field's value.
|
[
"SetEntityFilter",
"sets",
"the",
"EntityFilter",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L23151-L23154
|
165,961 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetPolicyGroups
|
func (s *ListEntitiesForPolicyOutput) SetPolicyGroups(v []*PolicyGroup) *ListEntitiesForPolicyOutput {
s.PolicyGroups = v
return s
}
|
go
|
func (s *ListEntitiesForPolicyOutput) SetPolicyGroups(v []*PolicyGroup) *ListEntitiesForPolicyOutput {
s.PolicyGroups = v
return s
}
|
[
"func",
"(",
"s",
"*",
"ListEntitiesForPolicyOutput",
")",
"SetPolicyGroups",
"(",
"v",
"[",
"]",
"*",
"PolicyGroup",
")",
"*",
"ListEntitiesForPolicyOutput",
"{",
"s",
".",
"PolicyGroups",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetPolicyGroups sets the PolicyGroups field's value.
|
[
"SetPolicyGroups",
"sets",
"the",
"PolicyGroups",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L23235-L23238
|
165,962 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetPolicyRoles
|
func (s *ListEntitiesForPolicyOutput) SetPolicyRoles(v []*PolicyRole) *ListEntitiesForPolicyOutput {
s.PolicyRoles = v
return s
}
|
go
|
func (s *ListEntitiesForPolicyOutput) SetPolicyRoles(v []*PolicyRole) *ListEntitiesForPolicyOutput {
s.PolicyRoles = v
return s
}
|
[
"func",
"(",
"s",
"*",
"ListEntitiesForPolicyOutput",
")",
"SetPolicyRoles",
"(",
"v",
"[",
"]",
"*",
"PolicyRole",
")",
"*",
"ListEntitiesForPolicyOutput",
"{",
"s",
".",
"PolicyRoles",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetPolicyRoles sets the PolicyRoles field's value.
|
[
"SetPolicyRoles",
"sets",
"the",
"PolicyRoles",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L23241-L23244
|
165,963 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetPolicyUsers
|
func (s *ListEntitiesForPolicyOutput) SetPolicyUsers(v []*PolicyUser) *ListEntitiesForPolicyOutput {
s.PolicyUsers = v
return s
}
|
go
|
func (s *ListEntitiesForPolicyOutput) SetPolicyUsers(v []*PolicyUser) *ListEntitiesForPolicyOutput {
s.PolicyUsers = v
return s
}
|
[
"func",
"(",
"s",
"*",
"ListEntitiesForPolicyOutput",
")",
"SetPolicyUsers",
"(",
"v",
"[",
"]",
"*",
"PolicyUser",
")",
"*",
"ListEntitiesForPolicyOutput",
"{",
"s",
".",
"PolicyUsers",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetPolicyUsers sets the PolicyUsers field's value.
|
[
"SetPolicyUsers",
"sets",
"the",
"PolicyUsers",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L23247-L23250
|
165,964 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetMFADevices
|
func (s *ListMFADevicesOutput) SetMFADevices(v []*MFADevice) *ListMFADevicesOutput {
s.MFADevices = v
return s
}
|
go
|
func (s *ListMFADevicesOutput) SetMFADevices(v []*MFADevice) *ListMFADevicesOutput {
s.MFADevices = v
return s
}
|
[
"func",
"(",
"s",
"*",
"ListMFADevicesOutput",
")",
"SetMFADevices",
"(",
"v",
"[",
"]",
"*",
"MFADevice",
")",
"*",
"ListMFADevicesOutput",
"{",
"s",
".",
"MFADevices",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetMFADevices sets the MFADevices field's value.
|
[
"SetMFADevices",
"sets",
"the",
"MFADevices",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L24020-L24023
|
165,965 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetOpenIDConnectProviderList
|
func (s *ListOpenIDConnectProvidersOutput) SetOpenIDConnectProviderList(v []*OpenIDConnectProviderListEntry) *ListOpenIDConnectProvidersOutput {
s.OpenIDConnectProviderList = v
return s
}
|
go
|
func (s *ListOpenIDConnectProvidersOutput) SetOpenIDConnectProviderList(v []*OpenIDConnectProviderListEntry) *ListOpenIDConnectProvidersOutput {
s.OpenIDConnectProviderList = v
return s
}
|
[
"func",
"(",
"s",
"*",
"ListOpenIDConnectProvidersOutput",
")",
"SetOpenIDConnectProviderList",
"(",
"v",
"[",
"]",
"*",
"OpenIDConnectProviderListEntry",
")",
"*",
"ListOpenIDConnectProvidersOutput",
"{",
"s",
".",
"OpenIDConnectProviderList",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetOpenIDConnectProviderList sets the OpenIDConnectProviderList field's value.
|
[
"SetOpenIDConnectProviderList",
"sets",
"the",
"OpenIDConnectProviderList",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L24064-L24067
|
165,966 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetServiceNamespaces
|
func (s *ListPoliciesGrantingServiceAccessInput) SetServiceNamespaces(v []*string) *ListPoliciesGrantingServiceAccessInput {
s.ServiceNamespaces = v
return s
}
|
go
|
func (s *ListPoliciesGrantingServiceAccessInput) SetServiceNamespaces(v []*string) *ListPoliciesGrantingServiceAccessInput {
s.ServiceNamespaces = v
return s
}
|
[
"func",
"(",
"s",
"*",
"ListPoliciesGrantingServiceAccessInput",
")",
"SetServiceNamespaces",
"(",
"v",
"[",
"]",
"*",
"string",
")",
"*",
"ListPoliciesGrantingServiceAccessInput",
"{",
"s",
".",
"ServiceNamespaces",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetServiceNamespaces sets the ServiceNamespaces field's value.
|
[
"SetServiceNamespaces",
"sets",
"the",
"ServiceNamespaces",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L24192-L24195
|
165,967 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetPoliciesGrantingServiceAccess
|
func (s *ListPoliciesGrantingServiceAccessOutput) SetPoliciesGrantingServiceAccess(v []*ListPoliciesGrantingServiceAccessEntry) *ListPoliciesGrantingServiceAccessOutput {
s.PoliciesGrantingServiceAccess = v
return s
}
|
go
|
func (s *ListPoliciesGrantingServiceAccessOutput) SetPoliciesGrantingServiceAccess(v []*ListPoliciesGrantingServiceAccessEntry) *ListPoliciesGrantingServiceAccessOutput {
s.PoliciesGrantingServiceAccess = v
return s
}
|
[
"func",
"(",
"s",
"*",
"ListPoliciesGrantingServiceAccessOutput",
")",
"SetPoliciesGrantingServiceAccess",
"(",
"v",
"[",
"]",
"*",
"ListPoliciesGrantingServiceAccessEntry",
")",
"*",
"ListPoliciesGrantingServiceAccessOutput",
"{",
"s",
".",
"PoliciesGrantingServiceAccess",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetPoliciesGrantingServiceAccess sets the PoliciesGrantingServiceAccess field's value.
|
[
"SetPoliciesGrantingServiceAccess",
"sets",
"the",
"PoliciesGrantingServiceAccess",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L24241-L24244
|
165,968 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetOnlyAttached
|
func (s *ListPoliciesInput) SetOnlyAttached(v bool) *ListPoliciesInput {
s.OnlyAttached = &v
return s
}
|
go
|
func (s *ListPoliciesInput) SetOnlyAttached(v bool) *ListPoliciesInput {
s.OnlyAttached = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"ListPoliciesInput",
")",
"SetOnlyAttached",
"(",
"v",
"bool",
")",
"*",
"ListPoliciesInput",
"{",
"s",
".",
"OnlyAttached",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetOnlyAttached sets the OnlyAttached field's value.
|
[
"SetOnlyAttached",
"sets",
"the",
"OnlyAttached",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L24341-L24344
|
165,969 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetSAMLProviderList
|
func (s *ListSAMLProvidersOutput) SetSAMLProviderList(v []*SAMLProviderListEntry) *ListSAMLProvidersOutput {
s.SAMLProviderList = v
return s
}
|
go
|
func (s *ListSAMLProvidersOutput) SetSAMLProviderList(v []*SAMLProviderListEntry) *ListSAMLProvidersOutput {
s.SAMLProviderList = v
return s
}
|
[
"func",
"(",
"s",
"*",
"ListSAMLProvidersOutput",
")",
"SetSAMLProviderList",
"(",
"v",
"[",
"]",
"*",
"SAMLProviderListEntry",
")",
"*",
"ListSAMLProvidersOutput",
"{",
"s",
".",
"SAMLProviderList",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetSAMLProviderList sets the SAMLProviderList field's value.
|
[
"SetSAMLProviderList",
"sets",
"the",
"SAMLProviderList",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L24969-L24972
|
165,970 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetSSHPublicKeys
|
func (s *ListSSHPublicKeysOutput) SetSSHPublicKeys(v []*SSHPublicKeyMetadata) *ListSSHPublicKeysOutput {
s.SSHPublicKeys = v
return s
}
|
go
|
func (s *ListSSHPublicKeysOutput) SetSSHPublicKeys(v []*SSHPublicKeyMetadata) *ListSSHPublicKeysOutput {
s.SSHPublicKeys = v
return s
}
|
[
"func",
"(",
"s",
"*",
"ListSSHPublicKeysOutput",
")",
"SetSSHPublicKeys",
"(",
"v",
"[",
"]",
"*",
"SSHPublicKeyMetadata",
")",
"*",
"ListSSHPublicKeysOutput",
"{",
"s",
".",
"SSHPublicKeys",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetSSHPublicKeys sets the SSHPublicKeys field's value.
|
[
"SetSSHPublicKeys",
"sets",
"the",
"SSHPublicKeys",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L25094-L25097
|
165,971 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetServerCertificateMetadataList
|
func (s *ListServerCertificatesOutput) SetServerCertificateMetadataList(v []*ServerCertificateMetadata) *ListServerCertificatesOutput {
s.ServerCertificateMetadataList = v
return s
}
|
go
|
func (s *ListServerCertificatesOutput) SetServerCertificateMetadataList(v []*ServerCertificateMetadata) *ListServerCertificatesOutput {
s.ServerCertificateMetadataList = v
return s
}
|
[
"func",
"(",
"s",
"*",
"ListServerCertificatesOutput",
")",
"SetServerCertificateMetadataList",
"(",
"v",
"[",
"]",
"*",
"ServerCertificateMetadata",
")",
"*",
"ListServerCertificatesOutput",
"{",
"s",
".",
"ServerCertificateMetadataList",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetServerCertificateMetadataList sets the ServerCertificateMetadataList field's value.
|
[
"SetServerCertificateMetadataList",
"sets",
"the",
"ServerCertificateMetadataList",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L25224-L25227
|
165,972 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetServiceSpecificCredentials
|
func (s *ListServiceSpecificCredentialsOutput) SetServiceSpecificCredentials(v []*ServiceSpecificCredentialMetadata) *ListServiceSpecificCredentialsOutput {
s.ServiceSpecificCredentials = v
return s
}
|
go
|
func (s *ListServiceSpecificCredentialsOutput) SetServiceSpecificCredentials(v []*ServiceSpecificCredentialMetadata) *ListServiceSpecificCredentialsOutput {
s.ServiceSpecificCredentials = v
return s
}
|
[
"func",
"(",
"s",
"*",
"ListServiceSpecificCredentialsOutput",
")",
"SetServiceSpecificCredentials",
"(",
"v",
"[",
"]",
"*",
"ServiceSpecificCredentialMetadata",
")",
"*",
"ListServiceSpecificCredentialsOutput",
"{",
"s",
".",
"ServiceSpecificCredentials",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetServiceSpecificCredentials sets the ServiceSpecificCredentials field's value.
|
[
"SetServiceSpecificCredentials",
"sets",
"the",
"ServiceSpecificCredentials",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L25299-L25302
|
165,973 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetVirtualMFADevices
|
func (s *ListVirtualMFADevicesOutput) SetVirtualMFADevices(v []*VirtualMFADevice) *ListVirtualMFADevicesOutput {
s.VirtualMFADevices = v
return s
}
|
go
|
func (s *ListVirtualMFADevicesOutput) SetVirtualMFADevices(v []*VirtualMFADevice) *ListVirtualMFADevicesOutput {
s.VirtualMFADevices = v
return s
}
|
[
"func",
"(",
"s",
"*",
"ListVirtualMFADevicesOutput",
")",
"SetVirtualMFADevices",
"(",
"v",
"[",
"]",
"*",
"VirtualMFADevice",
")",
"*",
"ListVirtualMFADevicesOutput",
"{",
"s",
".",
"VirtualMFADevices",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetVirtualMFADevices sets the VirtualMFADevices field's value.
|
[
"SetVirtualMFADevices",
"sets",
"the",
"VirtualMFADevices",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L25937-L25940
|
165,974 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetPolicyVersionList
|
func (s *ManagedPolicyDetail) SetPolicyVersionList(v []*PolicyVersion) *ManagedPolicyDetail {
s.PolicyVersionList = v
return s
}
|
go
|
func (s *ManagedPolicyDetail) SetPolicyVersionList(v []*PolicyVersion) *ManagedPolicyDetail {
s.PolicyVersionList = v
return s
}
|
[
"func",
"(",
"s",
"*",
"ManagedPolicyDetail",
")",
"SetPolicyVersionList",
"(",
"v",
"[",
"]",
"*",
"PolicyVersion",
")",
"*",
"ManagedPolicyDetail",
"{",
"s",
".",
"PolicyVersionList",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetPolicyVersionList sets the PolicyVersionList field's value.
|
[
"SetPolicyVersionList",
"sets",
"the",
"PolicyVersionList",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L26192-L26195
|
165,975 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetAllowedByOrganizations
|
func (s *OrganizationsDecisionDetail) SetAllowedByOrganizations(v bool) *OrganizationsDecisionDetail {
s.AllowedByOrganizations = &v
return s
}
|
go
|
func (s *OrganizationsDecisionDetail) SetAllowedByOrganizations(v bool) *OrganizationsDecisionDetail {
s.AllowedByOrganizations = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"OrganizationsDecisionDetail",
")",
"SetAllowedByOrganizations",
"(",
"v",
"bool",
")",
"*",
"OrganizationsDecisionDetail",
"{",
"s",
".",
"AllowedByOrganizations",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetAllowedByOrganizations sets the AllowedByOrganizations field's value.
|
[
"SetAllowedByOrganizations",
"sets",
"the",
"AllowedByOrganizations",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L26251-L26254
|
165,976 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetExpirePasswords
|
func (s *PasswordPolicy) SetExpirePasswords(v bool) *PasswordPolicy {
s.ExpirePasswords = &v
return s
}
|
go
|
func (s *PasswordPolicy) SetExpirePasswords(v bool) *PasswordPolicy {
s.ExpirePasswords = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"PasswordPolicy",
")",
"SetExpirePasswords",
"(",
"v",
"bool",
")",
"*",
"PasswordPolicy",
"{",
"s",
".",
"ExpirePasswords",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetExpirePasswords sets the ExpirePasswords field's value.
|
[
"SetExpirePasswords",
"sets",
"the",
"ExpirePasswords",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L26315-L26318
|
165,977 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetEntityName
|
func (s *PolicyGrantingServiceAccess) SetEntityName(v string) *PolicyGrantingServiceAccess {
s.EntityName = &v
return s
}
|
go
|
func (s *PolicyGrantingServiceAccess) SetEntityName(v string) *PolicyGrantingServiceAccess {
s.EntityName = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"PolicyGrantingServiceAccess",
")",
"SetEntityName",
"(",
"v",
"string",
")",
"*",
"PolicyGrantingServiceAccess",
"{",
"s",
".",
"EntityName",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetEntityName sets the EntityName field's value.
|
[
"SetEntityName",
"sets",
"the",
"EntityName",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L26605-L26608
|
165,978 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetEntityType
|
func (s *PolicyGrantingServiceAccess) SetEntityType(v string) *PolicyGrantingServiceAccess {
s.EntityType = &v
return s
}
|
go
|
func (s *PolicyGrantingServiceAccess) SetEntityType(v string) *PolicyGrantingServiceAccess {
s.EntityType = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"PolicyGrantingServiceAccess",
")",
"SetEntityType",
"(",
"v",
"string",
")",
"*",
"PolicyGrantingServiceAccess",
"{",
"s",
".",
"EntityType",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetEntityType sets the EntityType field's value.
|
[
"SetEntityType",
"sets",
"the",
"EntityType",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L26611-L26614
|
165,979 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetLine
|
func (s *Position) SetLine(v int64) *Position {
s.Line = &v
return s
}
|
go
|
func (s *Position) SetLine(v int64) *Position {
s.Line = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"Position",
")",
"SetLine",
"(",
"v",
"int64",
")",
"*",
"Position",
"{",
"s",
".",
"Line",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetLine sets the Line field's value.
|
[
"SetLine",
"sets",
"the",
"Line",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L26864-L26867
|
165,980 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetEvalResourceDecision
|
func (s *ResourceSpecificResult) SetEvalResourceDecision(v string) *ResourceSpecificResult {
s.EvalResourceDecision = &v
return s
}
|
go
|
func (s *ResourceSpecificResult) SetEvalResourceDecision(v string) *ResourceSpecificResult {
s.EvalResourceDecision = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"ResourceSpecificResult",
")",
"SetEvalResourceDecision",
"(",
"v",
"string",
")",
"*",
"ResourceSpecificResult",
"{",
"s",
".",
"EvalResourceDecision",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetEvalResourceDecision sets the EvalResourceDecision field's value.
|
[
"SetEvalResourceDecision",
"sets",
"the",
"EvalResourceDecision",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L27733-L27736
|
165,981 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetInstanceProfileList
|
func (s *RoleDetail) SetInstanceProfileList(v []*InstanceProfile) *RoleDetail {
s.InstanceProfileList = v
return s
}
|
go
|
func (s *RoleDetail) SetInstanceProfileList(v []*InstanceProfile) *RoleDetail {
s.InstanceProfileList = v
return s
}
|
[
"func",
"(",
"s",
"*",
"RoleDetail",
")",
"SetInstanceProfileList",
"(",
"v",
"[",
"]",
"*",
"InstanceProfile",
")",
"*",
"RoleDetail",
"{",
"s",
".",
"InstanceProfileList",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetInstanceProfileList sets the InstanceProfileList field's value.
|
[
"SetInstanceProfileList",
"sets",
"the",
"InstanceProfileList",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L28099-L28102
|
165,982 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetRolePolicyList
|
func (s *RoleDetail) SetRolePolicyList(v []*PolicyDetail) *RoleDetail {
s.RolePolicyList = v
return s
}
|
go
|
func (s *RoleDetail) SetRolePolicyList(v []*PolicyDetail) *RoleDetail {
s.RolePolicyList = v
return s
}
|
[
"func",
"(",
"s",
"*",
"RoleDetail",
")",
"SetRolePolicyList",
"(",
"v",
"[",
"]",
"*",
"PolicyDetail",
")",
"*",
"RoleDetail",
"{",
"s",
".",
"RolePolicyList",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetRolePolicyList sets the RolePolicyList field's value.
|
[
"SetRolePolicyList",
"sets",
"the",
"RolePolicyList",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L28129-L28132
|
165,983 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetServerCertificateId
|
func (s *ServerCertificateMetadata) SetServerCertificateId(v string) *ServerCertificateMetadata {
s.ServerCertificateId = &v
return s
}
|
go
|
func (s *ServerCertificateMetadata) SetServerCertificateId(v string) *ServerCertificateMetadata {
s.ServerCertificateId = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"ServerCertificateMetadata",
")",
"SetServerCertificateId",
"(",
"v",
"string",
")",
"*",
"ServerCertificateMetadata",
"{",
"s",
".",
"ServerCertificateId",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetServerCertificateId sets the ServerCertificateId field's value.
|
[
"SetServerCertificateId",
"sets",
"the",
"ServerCertificateId",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L28489-L28492
|
165,984 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetLastAuthenticatedEntity
|
func (s *ServiceLastAccessed) SetLastAuthenticatedEntity(v string) *ServiceLastAccessed {
s.LastAuthenticatedEntity = &v
return s
}
|
go
|
func (s *ServiceLastAccessed) SetLastAuthenticatedEntity(v string) *ServiceLastAccessed {
s.LastAuthenticatedEntity = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"ServiceLastAccessed",
")",
"SetLastAuthenticatedEntity",
"(",
"v",
"string",
")",
"*",
"ServiceLastAccessed",
"{",
"s",
".",
"LastAuthenticatedEntity",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetLastAuthenticatedEntity sets the LastAuthenticatedEntity field's value.
|
[
"SetLastAuthenticatedEntity",
"sets",
"the",
"LastAuthenticatedEntity",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L28571-L28574
|
165,985 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetTotalAuthenticatedEntities
|
func (s *ServiceLastAccessed) SetTotalAuthenticatedEntities(v int64) *ServiceLastAccessed {
s.TotalAuthenticatedEntities = &v
return s
}
|
go
|
func (s *ServiceLastAccessed) SetTotalAuthenticatedEntities(v int64) *ServiceLastAccessed {
s.TotalAuthenticatedEntities = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"ServiceLastAccessed",
")",
"SetTotalAuthenticatedEntities",
"(",
"v",
"int64",
")",
"*",
"ServiceLastAccessed",
"{",
"s",
".",
"TotalAuthenticatedEntities",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetTotalAuthenticatedEntities sets the TotalAuthenticatedEntities field's value.
|
[
"SetTotalAuthenticatedEntities",
"sets",
"the",
"TotalAuthenticatedEntities",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L28589-L28592
|
165,986 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetServicePassword
|
func (s *ServiceSpecificCredential) SetServicePassword(v string) *ServiceSpecificCredential {
s.ServicePassword = &v
return s
}
|
go
|
func (s *ServiceSpecificCredential) SetServicePassword(v string) *ServiceSpecificCredential {
s.ServicePassword = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"ServiceSpecificCredential",
")",
"SetServicePassword",
"(",
"v",
"string",
")",
"*",
"ServiceSpecificCredential",
"{",
"s",
".",
"ServicePassword",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetServicePassword sets the ServicePassword field's value.
|
[
"SetServicePassword",
"sets",
"the",
"ServicePassword",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L28662-L28665
|
165,987 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetGlobalEndpointTokenVersion
|
func (s *SetSecurityTokenServicePreferencesInput) SetGlobalEndpointTokenVersion(v string) *SetSecurityTokenServicePreferencesInput {
s.GlobalEndpointTokenVersion = &v
return s
}
|
go
|
func (s *SetSecurityTokenServicePreferencesInput) SetGlobalEndpointTokenVersion(v string) *SetSecurityTokenServicePreferencesInput {
s.GlobalEndpointTokenVersion = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"SetSecurityTokenServicePreferencesInput",
")",
"SetGlobalEndpointTokenVersion",
"(",
"v",
"string",
")",
"*",
"SetSecurityTokenServicePreferencesInput",
"{",
"s",
".",
"GlobalEndpointTokenVersion",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetGlobalEndpointTokenVersion sets the GlobalEndpointTokenVersion field's value.
|
[
"SetGlobalEndpointTokenVersion",
"sets",
"the",
"GlobalEndpointTokenVersion",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L28892-L28895
|
165,988 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetEndPosition
|
func (s *Statement) SetEndPosition(v *Position) *Statement {
s.EndPosition = v
return s
}
|
go
|
func (s *Statement) SetEndPosition(v *Position) *Statement {
s.EndPosition = v
return s
}
|
[
"func",
"(",
"s",
"*",
"Statement",
")",
"SetEndPosition",
"(",
"v",
"*",
"Position",
")",
"*",
"Statement",
"{",
"s",
".",
"EndPosition",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetEndPosition sets the EndPosition field's value.
|
[
"SetEndPosition",
"sets",
"the",
"EndPosition",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L29627-L29630
|
165,989 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetSourcePolicyId
|
func (s *Statement) SetSourcePolicyId(v string) *Statement {
s.SourcePolicyId = &v
return s
}
|
go
|
func (s *Statement) SetSourcePolicyId(v string) *Statement {
s.SourcePolicyId = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"Statement",
")",
"SetSourcePolicyId",
"(",
"v",
"string",
")",
"*",
"Statement",
"{",
"s",
".",
"SourcePolicyId",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetSourcePolicyId sets the SourcePolicyId field's value.
|
[
"SetSourcePolicyId",
"sets",
"the",
"SourcePolicyId",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L29633-L29636
|
165,990 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetSourcePolicyType
|
func (s *Statement) SetSourcePolicyType(v string) *Statement {
s.SourcePolicyType = &v
return s
}
|
go
|
func (s *Statement) SetSourcePolicyType(v string) *Statement {
s.SourcePolicyType = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"Statement",
")",
"SetSourcePolicyType",
"(",
"v",
"string",
")",
"*",
"Statement",
"{",
"s",
".",
"SourcePolicyType",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetSourcePolicyType sets the SourcePolicyType field's value.
|
[
"SetSourcePolicyType",
"sets",
"the",
"SourcePolicyType",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L29639-L29642
|
165,991 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetStartPosition
|
func (s *Statement) SetStartPosition(v *Position) *Statement {
s.StartPosition = v
return s
}
|
go
|
func (s *Statement) SetStartPosition(v *Position) *Statement {
s.StartPosition = v
return s
}
|
[
"func",
"(",
"s",
"*",
"Statement",
")",
"SetStartPosition",
"(",
"v",
"*",
"Position",
")",
"*",
"Statement",
"{",
"s",
".",
"StartPosition",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetStartPosition sets the StartPosition field's value.
|
[
"SetStartPosition",
"sets",
"the",
"StartPosition",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L29645-L29648
|
165,992 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetNewGroupName
|
func (s *UpdateGroupInput) SetNewGroupName(v string) *UpdateGroupInput {
s.NewGroupName = &v
return s
}
|
go
|
func (s *UpdateGroupInput) SetNewGroupName(v string) *UpdateGroupInput {
s.NewGroupName = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"UpdateGroupInput",
")",
"SetNewGroupName",
"(",
"v",
"string",
")",
"*",
"UpdateGroupInput",
"{",
"s",
".",
"NewGroupName",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetNewGroupName sets the NewGroupName field's value.
|
[
"SetNewGroupName",
"sets",
"the",
"NewGroupName",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L30456-L30459
|
165,993 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetNewServerCertificateName
|
func (s *UpdateServerCertificateInput) SetNewServerCertificateName(v string) *UpdateServerCertificateInput {
s.NewServerCertificateName = &v
return s
}
|
go
|
func (s *UpdateServerCertificateInput) SetNewServerCertificateName(v string) *UpdateServerCertificateInput {
s.NewServerCertificateName = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"UpdateServerCertificateInput",
")",
"SetNewServerCertificateName",
"(",
"v",
"string",
")",
"*",
"UpdateServerCertificateInput",
"{",
"s",
".",
"NewServerCertificateName",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetNewServerCertificateName sets the NewServerCertificateName field's value.
|
[
"SetNewServerCertificateName",
"sets",
"the",
"NewServerCertificateName",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L31079-L31082
|
165,994 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetNewUserName
|
func (s *UpdateUserInput) SetNewUserName(v string) *UpdateUserInput {
s.NewUserName = &v
return s
}
|
go
|
func (s *UpdateUserInput) SetNewUserName(v string) *UpdateUserInput {
s.NewUserName = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"UpdateUserInput",
")",
"SetNewUserName",
"(",
"v",
"string",
")",
"*",
"UpdateUserInput",
"{",
"s",
".",
"NewUserName",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetNewUserName sets the NewUserName field's value.
|
[
"SetNewUserName",
"sets",
"the",
"NewUserName",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L31358-L31361
|
165,995 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetPasswordLastUsed
|
func (s *User) SetPasswordLastUsed(v time.Time) *User {
s.PasswordLastUsed = &v
return s
}
|
go
|
func (s *User) SetPasswordLastUsed(v time.Time) *User {
s.PasswordLastUsed = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"User",
")",
"SetPasswordLastUsed",
"(",
"v",
"time",
".",
"Time",
")",
"*",
"User",
"{",
"s",
".",
"PasswordLastUsed",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetPasswordLastUsed sets the PasswordLastUsed field's value.
|
[
"SetPasswordLastUsed",
"sets",
"the",
"PasswordLastUsed",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L31861-L31864
|
165,996 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetUserPolicyList
|
func (s *UserDetail) SetUserPolicyList(v []*PolicyDetail) *UserDetail {
s.UserPolicyList = v
return s
}
|
go
|
func (s *UserDetail) SetUserPolicyList(v []*PolicyDetail) *UserDetail {
s.UserPolicyList = v
return s
}
|
[
"func",
"(",
"s",
"*",
"UserDetail",
")",
"SetUserPolicyList",
"(",
"v",
"[",
"]",
"*",
"PolicyDetail",
")",
"*",
"UserDetail",
"{",
"s",
".",
"UserPolicyList",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetUserPolicyList sets the UserPolicyList field's value.
|
[
"SetUserPolicyList",
"sets",
"the",
"UserPolicyList",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L32015-L32018
|
165,997 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetBase32StringSeed
|
func (s *VirtualMFADevice) SetBase32StringSeed(v []byte) *VirtualMFADevice {
s.Base32StringSeed = v
return s
}
|
go
|
func (s *VirtualMFADevice) SetBase32StringSeed(v []byte) *VirtualMFADevice {
s.Base32StringSeed = v
return s
}
|
[
"func",
"(",
"s",
"*",
"VirtualMFADevice",
")",
"SetBase32StringSeed",
"(",
"v",
"[",
"]",
"byte",
")",
"*",
"VirtualMFADevice",
"{",
"s",
".",
"Base32StringSeed",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetBase32StringSeed sets the Base32StringSeed field's value.
|
[
"SetBase32StringSeed",
"sets",
"the",
"Base32StringSeed",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L32061-L32064
|
165,998 |
aws/aws-sdk-go
|
service/iam/api.go
|
SetQRCodePNG
|
func (s *VirtualMFADevice) SetQRCodePNG(v []byte) *VirtualMFADevice {
s.QRCodePNG = v
return s
}
|
go
|
func (s *VirtualMFADevice) SetQRCodePNG(v []byte) *VirtualMFADevice {
s.QRCodePNG = v
return s
}
|
[
"func",
"(",
"s",
"*",
"VirtualMFADevice",
")",
"SetQRCodePNG",
"(",
"v",
"[",
"]",
"byte",
")",
"*",
"VirtualMFADevice",
"{",
"s",
".",
"QRCodePNG",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetQRCodePNG sets the QRCodePNG field's value.
|
[
"SetQRCodePNG",
"sets",
"the",
"QRCodePNG",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/iam/api.go#L32073-L32076
|
165,999 |
aws/aws-sdk-go
|
service/elastictranscoder/api.go
|
SetAlbumArtFormat
|
func (s *Artwork) SetAlbumArtFormat(v string) *Artwork {
s.AlbumArtFormat = &v
return s
}
|
go
|
func (s *Artwork) SetAlbumArtFormat(v string) *Artwork {
s.AlbumArtFormat = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"Artwork",
")",
"SetAlbumArtFormat",
"(",
"v",
"string",
")",
"*",
"Artwork",
"{",
"s",
".",
"AlbumArtFormat",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetAlbumArtFormat sets the AlbumArtFormat field's value.
|
[
"SetAlbumArtFormat",
"sets",
"the",
"AlbumArtFormat",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elastictranscoder/api.go#L1959-L1962
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.